Slavko Tretiak
Results
2
comments of
Slavko Tretiak
We have the same issue. I have a MacBook with English locale system, and my co-worker, similar MacBook with German locale system. For me, the date input is dd.mm.yyyy -...
FYI HTML5 date inputs ALWAYS expect ISO format (YYYY-MM-DD) internally, regardless of how they display to the user. Use fill() for HTML5 date inputs. ``` const dateInput = page.locator('input[name="date"]'); await...