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

Java version of the Playwright testing and automation library

Results 84 playwright-java issues
Sort by recently updated
recently updated
newest added

Please backport client side changes: - [ ] https://github.com/microsoft/playwright/pull/35645 - [ ] https://github.com/microsoft/playwright/pull/35686 - [ ] https://github.com/microsoft/playwright/pull/35721 - [ ] https://github.com/microsoft/playwright/pull/35722 - [ ] https://github.com/microsoft/playwright/pull/35723 - [ ] https://github.com/microsoft/playwright/pull/35800 -...

### Version 1.46.0 ### Steps to reproduce Hello, we started using playwright with java for API Automation as the similar setup was being used by few other members for UI...

Bumps the all group with 5 updates in the / directory: | Package | From | To | | --- | --- | --- | | [com.google.code.gson:gson](https://github.com/google/gson) | `2.12.1` |...

dependencies
java

### 🚀 Feature Request I would like to have ability to automatically save multiple trace files for parametrized tests. ### Example I have Option ```.setTrace(Options.Trace.RETAIN_ON_FAILURE)``` and parametrized test that fails....

P3-collecting-feedback

### Version 1.49.0 ### Steps to reproduce kotlin code: ``` page.route({ it.startsWith(url}) { route -> val response = route.fetch() route.fulfill(Route.FulfillOptions().setResponse(response)) } ``` ### Expected behavior I expect that the response...

### Version 1.51.0 ### Steps to reproduce 1. Perform the action that makes the progress bar visible. 2. Immediately before or after the progress bar is detached, call waitFor to...

### Version 1.52.0 ### Steps to reproduce Use this reproduction example, run the main method. ``` import com.microsoft.playwright.Browser; import com.microsoft.playwright.BrowserContext; import com.microsoft.playwright.Locator; import com.microsoft.playwright.Page; import com.microsoft.playwright.Playwright; import java.util.List; public class...

### 🚀 Feature Request Current Page and BrowserContext JUnit fixture implementation prevents using these fixtures in BeforeAll/AfterAll methods while APIRequestContext does not have this restriction. This makes using Page for...

P3-collecting-feedback

### 🚀 Feature Request Please provide test fixtures for TestNG testing framework which would work similarly as in JUnit framework. This could work similarly to @UsePlaywright, reducing boilerplate code. In...

P3-collecting-feedback

### Page(s) https://playwright.dev/java/docs/ci-intro ### Description I think there are two details that could be improved: * In the [Introduction](https://playwright.dev/java/docs/ci-intro#introduction), the "detailed doc on Continuous Integration" could link to https://playwright.dev/java/docs/ci *...

documentation
open-to-a-pull-request