我是新的剧作家框架来自量角器的背景,想知道的方法,选择器选择一个日期的剧作家。selector.fill(date)//不工作
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
inkz8wg92#
page.fill('[id="date"]', '08/21/2022')//不工作就像这样:
<input readonly="" placeholder="Select date" class="ant-calendar-picker-input ant-input" value="2022-02-25"\>
字符串
lmyy7pcs3#
您的日期格式不正确。试试这个:
await Page.FillAsync("YourSlector", "2022-02-25");
3条答案
按热度按时间xmjla07d1#
fill是这样使用的:
字符串
所以如果date元素是'id=“date”'
型
https://playwright.dev/python/docs/api/class-page#page-fill
inkz8wg92#
page.fill('[id="date"]', '08/21/2022')
//不工作就像这样:
字符串
lmyy7pcs3#
您的日期格式不正确。
试试这个:
字符串