(test)
| 113 | |
| 114 | |
| 115 | def test_mark005_table(test): |
| 116 | test.start_server(get_app()) |
| 117 | |
| 118 | target = test.table("table") |
| 119 | |
| 120 | target.column(4).sort(1) |
| 121 | assert ( |
| 122 | target.cell(0, "markdown-tables") |
| 123 | .find_inside(".dash-cell-value > table > tbody > tr > td") |
| 124 | .get_attribute("innerHTML") |
| 125 | == "0" |
| 126 | ) |
| 127 | |
| 128 | target.column(4).sort(1) |
| 129 | assert ( |
| 130 | target.cell(0, "markdown-tables") |
| 131 | .find_inside(".dash-cell-value > table > tbody > tr > td") |
| 132 | .get_attribute("innerHTML") |
| 133 | == "99" |
| 134 | ) |
| 135 | |
| 136 | |
| 137 | @pytest.mark.parametrize( |
nothing calls this directly
no test coverage detected
searching dependent graphs…