playwright-go icon indicating copy to clipboard operation
playwright-go copied to clipboard

Playwright for Go a browser automation library to control Chromium, Firefox and WebKit with a single API.

Results 102 playwright-go issues
Sort by recently updated
recently updated
newest added

The documentation says `Support for web components via shadow-piercing selectors`. I also found files like https://github.com/playwright-community/playwright-go/blob/main/tests/assets/deep-shadow.html Nevertheless I didn't find any test for shadowed fields. When I try to select...

triaging

The [nodejs equivalent](https://playwright.dev/docs/api/class-page#page-wait-for-url) of `Page.WaitForURL()` allows one to pass regex objects. Is there a way to achieve similar functionality in golang? Maybe something like this. ```go if r, err :=...

like this ? page.On("websocket", func(websocket playwright.WebSocket) { fmt.Printf("websocket %s\n", websocket.URL()) }) could you provide a demo,thanks

I need to obtain the request header after completing the request, and the main code is as follows: “ Browser.chromeContext On ("requestfinished", fun (request playwright. Request){ Browser. responseListener (request) })...

Hi, I tried to change UserAgent while running headless mode to avoid HeadlessChrome, but it was not working; here is my config: - `BrowserTypeLaunchOptions`: ``` Args: ["--disable-extensions","--disable-images","--window-size=1920,1080","--start-maximized", "--headless=new"] HandleSIGUP, HandleSIGINT,...

Is there any way to retrieve secured cookies, i can grab cookies stored in context.StorageState, which also has secure(bool) flag but it doesnt make sense if only non-secured cookies are...

``` C:\Users\xxxxxxxxAppData\Local\ms-playwright-go\1.42.1\package\lib\server\firefox\ffNetworkManager.js:110 response.setTransferSize(event.transferSize); ^ TypeError: Cannot read properties of null (reading 'setTransferSize') at FFNetworkManager._onRequestFinished (C:\Users\xxxxxxxx\AppData\Local\ms-playwright-go\1.42.1\package\lib\server\firefox\ffNetworkManager.js:110:14) at FFSession.emit (node:events:518:28) at C:\Users\xxxxxxxxAppData\Local\ms-playwright-go\1.42.1\package\lib\server\firefox\ffConnection.js:154:41 Node.js v20.11.0 ``` It totally randomly occurs.

``` bash 2024/05/09 23:57:14 Downloading browsers... Playwright Host validation warning: ╔══════════════════════════════════════════════════════╗ ║ Host system is missing dependencies to run browsers. ║ ║ Missing libraries: ║ ║ libicudata.so.70 ║ ║ libicui18n.so.70...

**Environments** - playwright-go Version: v0.4201.1 - Browser: firefox - OS and version: macOS **Bug description** after set user-agent, browserscan.net check is ok, only twitter's Your Account to be invalid when...

p3-collecting-feedback