You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Headless execution is supported for all the browsers on all platforms. Check out [system requirements](https://playwright.dev/java/docs/intro#system-requirements) for details.
*[Is Playwright for Java ready?](#is-playwright-for-java-ready)
30
-
31
-
## Usage
32
-
33
-
Playwright requires **Java 8** or newer.
34
-
35
-
#### Add Maven dependency
36
-
37
-
Playwright is distributed as a set of [Maven](https://maven.apache.org/what-is-maven.html) modules. The easiest way to use it is to add one dependency to your Maven `pom.xml` file as described below. If you're not familiar with Maven please refer to its [documentation](https://maven.apache.org/guides/getting-started/maven-in-five-minutes.html).
38
-
39
-
To run Playwright simply add following dependency to your Maven project:
40
-
41
-
```xml
42
-
<dependency>
43
-
<groupId>com.microsoft.playwright</groupId>
44
-
<artifactId>playwright</artifactId>
45
-
<version>1.41.0</version>
46
-
</dependency>
47
-
```
48
-
49
-
To run Playwright using Gradle add following dependency to your build.gradle file:
No, Playwright is not thread safe, i.e. all its methods as well as methods on all objects created by it (such as BrowserContext, Browser, Page etc.) are expected to be called on the same thread where Playwright object was created or proper synchronization should be implemented to ensure only one thread calls Playwright methods at any given time. Having said that it's okay to create multiple Playwright instances each on its own thread.
Check out our official [documentation site](https://playwright.dev/java).
184
-
185
-
You can also browse [javadoc online](https://www.javadoc.io/doc/com.microsoft.playwright/playwright/latest/index.html).
186
-
187
-
## Contributing
188
-
189
-
Follow [the instructions](https://github.com/microsoft/playwright-java/blob/main/CONTRIBUTING.md#getting-code) to build the project from source and install the driver.
190
-
191
-
## Is Playwright for Java ready?
57
+
## Other languages
192
58
193
-
Yes, Playwright for Java is ready. v1.10.0 is the first stable release. Going forward we will adhere to [semantic versioning](https://semver.org/) of the API.
59
+
More comfortable in another programming language? [Playwright](https://playwright.dev) is also available in
0 commit comments