typescript 如何使用Playwright从具有只读属性的日历中选择日期?

vlf7wbxs  于 2023-08-07  发布在  TypeScript
关注(0)|答案(3)|浏览(172)

我是新的剧作家框架来自量角器的背景,想知道的方法,选择器选择一个日期的剧作家。
selector.fill(date)//不工作

xmjla07d

xmjla07d1#

fill是这样使用的:

page.fill('selector', valueToFillWith)

字符串
所以如果date元素是'id=“date”'

page.fill('[id="date"]', '08/21/2022')


https://playwright.dev/python/docs/api/class-page#page-fill

inkz8wg9

inkz8wg92#

page.fill('[id="date"]', '08/21/2022')//不工作
就像这样:

<input readonly="" placeholder="Select date" class="ant-calendar-picker-input ant-input" value="2022-02-25"\>

字符串

lmyy7pcs

lmyy7pcs3#

您的日期格式不正确。
试试这个:

await Page.FillAsync("YourSlector", "2022-02-25");

字符串

相关问题