Test that st.date_input has the correct value after typing in a date.
(app: Page)
| 156 | |
| 157 | |
| 158 | def test_handle_value_changes(app: Page): |
| 159 | """Test that st.date_input has the correct value after typing in a date.""" |
| 160 | first_date_input_field = get_date_input(app, "Single date").locator("input") |
| 161 | first_date_input_field.fill("1970/01/02") |
| 162 | first_date_input_field.blur() |
| 163 | expect_markdown(app, "Value 1: 1970-01-02") |
| 164 | |
| 165 | |
| 166 | def test_empty_date_input_behaves_correctly( |
nothing calls this directly
no test coverage detected
searching dependent graphs…