Optional
abilityOptional
callStatic
inFinds the specified locator and will it with the specified input string.
the locator.
the input.
Optional
options: FillActionOptions(optional) options for the fill action.
new Fill instance
simple call with just locator
Fill.in(
page.locator('myLocator'),
'myInput'
);
with options
Fill.in(
page.locator('myLocator'),
'myInput',
{ timeout: 3000 }
);
Generated using TypeDoc
Fill an element specified by a locator string with the specified input.