Test that selection of a date on the calendar works as expected.
(app: Page)
| 144 | |
| 145 | |
| 146 | def test_handles_date_selection(app: Page): |
| 147 | """Test that selection of a date on the calendar works as expected.""" |
| 148 | get_date_input(app, "Single date").locator("input").click() |
| 149 | |
| 150 | # Select '1970/01/02': |
| 151 | app.locator( |
| 152 | '[data-baseweb="calendar"] [aria-label^="Choose Friday, January 2nd 1970."]' |
| 153 | ).first.click() |
| 154 | |
| 155 | expect_markdown(app, "Value 1: 1970-01-02") |
| 156 | |
| 157 | |
| 158 | def test_handle_value_changes(app: Page): |
nothing calls this directly
no test coverage detected
searching dependent graphs…