Skip to content

Commit 9ce446e

Browse files
committed
Fix fill()
1 parent ab9fb96 commit 9ce446e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

playwright/_impl/_frame.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -587,7 +587,7 @@ async def fill(
587587
strict: bool = None,
588588
force: bool = None,
589589
) -> None:
590-
await self._fill(**locals())
590+
await self._fill(**locals_to_params(locals()))
591591

592592
async def _fill(
593593
self,

0 commit comments

Comments
 (0)