mirror of
https://github.com/microsoft/playwright.git
synced 2024-12-15 06:02:57 +03:00
docs(input): fixed wrong example time value (#6988)
This commit is contained in:
parent
521153844a
commit
048a380462
@ -17,7 +17,7 @@ await page.fill('#name', 'Peter');
|
||||
await page.fill('#date', '2020-02-02');
|
||||
|
||||
// Time input
|
||||
await page.fill('#time', '13-15');
|
||||
await page.fill('#time', '13:15');
|
||||
|
||||
// Local datetime input
|
||||
await page.fill('#local', '2020-03-02T05:15');
|
||||
@ -51,7 +51,7 @@ await page.fill('#name', 'Peter')
|
||||
await page.fill('#date', '2020-02-02')
|
||||
|
||||
# Time input
|
||||
await page.fill('#time', '13-15')
|
||||
await page.fill('#time', '13:15')
|
||||
|
||||
# Local datetime input
|
||||
await page.fill('#local', '2020-03-02T05:15')
|
||||
@ -68,7 +68,7 @@ page.fill('#name', 'Peter')
|
||||
page.fill('#date', '2020-02-02')
|
||||
|
||||
# Time input
|
||||
page.fill('#time', '13-15')
|
||||
page.fill('#time', '13:15')
|
||||
|
||||
# Local datetime input
|
||||
page.fill('#local', '2020-03-02T05:15')
|
||||
|
Loading…
Reference in New Issue
Block a user