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

According to the playwright official site "Fetch _Sends HTTP(S) request and returns its response. The method will populate request cookies from the context and update context cookies from the response....

Hi, I'm experiencing what appears to be a deadlock when calling `page.Content()`. I'm crawling multiple pages in parallel using different browser contexts. It works great most of the time, but...

Currently, it is possible to install Playwright with its dependencies from Golang by using this syntax: ```go err := playwright.Install(&playwright.RunOptions{Browsers: []string{"--with-deps"}}) ``` This PR introduces a more elegant solution: ```go...

I want to obtain all the request headers when making an HTTP request. I've tried using > request.AllHeaders(), request.HeadersArray(), and request.HeaderValue() methods within > page.OnRequest or page.OnRequestFinished but I can...

Would it be possible to run playwright-recorded scripts? I am trying to write something that makes it easy for non-programmers to write browser tests. Essentially what we want to do...

Split the code and add comments, now `helper_test.go` can be used as a useful example

I'm facing an issue when extending my browser-based desktop tests to mobile devices. If I set the device Viewport, it fails: 1- when chromium, tests always fail and running in...

Does it support Selenium Grid? Python version support, there are corresponding usages, does the Go version also support it? python: `SELENIUM_REMOTE_URL=http://192.168.1.105:19091/ python demo.py --browser chromium`

Hello, I want to use extra plugin [stealth](https://www.npmjs.com/package/playwright-extra). I tried to check quickly on repo, but not able to find anything useful. Is there any way to get it working...

Hello, I am trying to use [https://playwright.microsoft.com/](https://playwright.microsoft.com/) for a project. The intension is to connect to cloud browser instance using a web socket url. I am unable to use this...