Update playwright/README.md

This commit is contained in:
2024-11-19 08:10:33 -05:00
parent cc38b6e59d
commit e3f7f678c6

View File

@@ -19,4 +19,6 @@ async def Page():
setattr(page, attr, sync(method))
page.goto = lambda url, goto=page.goto: goto(url) and Image(page.screenshot())
return page
(page := Page()).goto('https://naver.com')
(page := Page()).goto('https://naver.com')
print(page.title()) # NAVER
```