(test, props)
| 82 | |
| 83 | @pytest.mark.parametrize("props", read_write_modes) |
| 84 | def test_edit004_edit_focused(test, props): |
| 85 | test.start_server(get_app(props)) |
| 86 | |
| 87 | target = test.table("table") |
| 88 | |
| 89 | c1 = target.cell(3, 1) |
| 90 | c1.click() |
| 91 | |
| 92 | test.send_keys("abc") |
| 93 | # Selected everything again on click |
| 94 | c1.click() |
| 95 | test.send_keys("def") |
| 96 | |
| 97 | assert c1.get_text() == "def" |
| 98 | |
| 99 | assert test.get_log_errors() == [] |
nothing calls this directly
no test coverage detected
searching dependent graphs…