I am new to the playwright framework came from protractor background and want to know the method for the selector to select a date in the playwright.
selctor.fill(date) //not working
fill is used like this:
page.fill('selector', valueToFillWith)
so if date element is 'id="date"'
page.fill('[id="date"]', '08/21/2022')
page.fill('[id="date"]', '08/21/2022') // not working
like this: <input readonly="" placeholder="Select date" class="ant-calendar-picker-input ant-input" value="2022-02-25">