(test)
| 91 | |
| 92 | |
| 93 | def test_mark004_image(test): |
| 94 | test.start_server(get_app()) |
| 95 | |
| 96 | target = test.table("table") |
| 97 | |
| 98 | target.column(8).sort(1) |
| 99 | assert ( |
| 100 | target.cell(0, "markdown-images") |
| 101 | .find_inside(".dash-cell-value > p > img") |
| 102 | .get_attribute("alt") |
| 103 | == "image 0 alt text" |
| 104 | ) |
| 105 | |
| 106 | target.column(8).sort(1) |
| 107 | assert ( |
| 108 | target.cell(0, "markdown-images") |
| 109 | .find_inside(".dash-cell-value > p > img") |
| 110 | .get_attribute("alt") |
| 111 | == "image 99 alt text" |
| 112 | ) |
| 113 | |
| 114 | |
| 115 | def test_mark005_table(test): |
nothing calls this directly
no test coverage detected
searching dependent graphs…