(test)
| 69 | |
| 70 | |
| 71 | def test_mark003_link(test): |
| 72 | test.start_server(get_app()) |
| 73 | |
| 74 | target = test.table("table") |
| 75 | |
| 76 | target.column(2).sort(1) |
| 77 | assert ( |
| 78 | target.cell(0, "markdown-links") |
| 79 | .find_inside(".dash-cell-value > p > a") |
| 80 | .get_attribute("innerHTML") |
| 81 | == "Learn about 0" |
| 82 | ) |
| 83 | |
| 84 | target.column(2).sort(1) |
| 85 | assert ( |
| 86 | target.cell(0, "markdown-links") |
| 87 | .find_inside(".dash-cell-value > p > a") |
| 88 | .get_attribute("innerHTML") |
| 89 | == "Learn about 9" |
| 90 | ) |
| 91 | |
| 92 | |
| 93 | def test_mark004_image(test): |
nothing calls this directly
no test coverage detected
searching dependent graphs…