Selenium Test Elements

Select an element from the dropdown (top-right) or use the links to open a dedicated test page with instructions.


Calendar / Date Picker

Use native date input to select a date.

How to test with Selenium

- Date input with id element_date. Send keys or pick using native control.

driver.findElement(By.id("element_date")).sendKeys("2026-05-24");
# Python
driver.find_element(By.ID, "element_date").send_keys('2026-05-24')

Tip: use By.id selectors where possible. IDs used on this page are stable and intended for automated testing.


Back to Setup