Skip to content

Commit a80bbc3

Browse files
authored
Merge branch 'main' into test/warning-cleanups
2 parents 91f7b8c + 6c059e3 commit a80bbc3

File tree

6 files changed

+49
-144
lines changed

6 files changed

+49
-144
lines changed

.devcontainer/devcontainer.json

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
2+
// README at: https://github.com/devcontainers/templates/tree/main/src/java
3+
{
4+
"name": "Java",
5+
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
6+
"image": "mcr.microsoft.com/devcontainers/java:1-21-bookworm",
7+
8+
"features": {
9+
"ghcr.io/devcontainers/features/java:1": {
10+
"version": "none",
11+
"installGradle": "false",
12+
"installMaven": "true"
13+
},
14+
"ghcr.io/devcontainers/features/docker-outside-of-docker:1": {}
15+
}
16+
17+
// Use 'forwardPorts' to make a list of ports inside the container available locally.
18+
// "forwardPorts": [],
19+
20+
// Use 'postCreateCommand' to run commands after the container is created.
21+
// "postCreateCommand": "java -version",
22+
23+
// Configure tool-specific properties.
24+
// "customizations": {},
25+
26+
// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
27+
// "remoteUser": "root"
28+
}

.github/dependabot.yml

+8
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,11 @@ updates:
1717
allow:
1818
- dependency-type: "direct" # Optional: Only update direct dependencies
1919
- dependency-type: "indirect" # Optional: Only update indirect (transitive) dependencies
20+
- package-ecosystem: "github-actions"
21+
directory: "/"
22+
schedule:
23+
interval: "monthly"
24+
groups:
25+
actions:
26+
patterns:
27+
- "*"

.github/workflows/test_docker.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
matrix:
2727
flavor: [jammy, noble]
2828
steps:
29-
- uses: actions/checkout@v3
29+
- uses: actions/checkout@v4
3030
- name: Build Docker image
3131
run: bash utils/docker/build.sh --amd64 ${{ matrix.flavor }} playwright-java:localbuild-${{ matrix.flavor }}
3232
- name: Test

README.md

+10-141
Original file line numberDiff line numberDiff line change
@@ -14,55 +14,15 @@ Playwright is a Java library to automate [Chromium](https://www.chromium.org/Hom
1414
| WebKit <!-- GEN:webkit-version -->18.4<!-- GEN:stop --> ||||
1515
| Firefox <!-- GEN:firefox-version -->135.0<!-- GEN:stop --> | :white_check_mark: | :white_check_mark: | :white_check_mark: |
1616

17-
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.
18-
19-
* [Usage](#usage)
20-
- [Add Maven dependency](#add-maven-dependency)
21-
- [Is Playwright thread-safe?](#is-playwright-thread-safe)
22-
* [Examples](#examples)
23-
- [Page screenshot](#page-screenshot)
24-
- [Mobile and geolocation](#mobile-and-geolocation)
25-
- [Evaluate JavaScript in browser](#evaluate-javascript-in-browser)
26-
- [Intercept network requests](#intercept-network-requests)
27-
* [Documentation](#documentation)
28-
* [Contributing](#contributing)
29-
* [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:
50-
51-
```gradle
52-
dependencies {
53-
implementation group: 'com.microsoft.playwright', name: 'playwright', version: '1.41.0'
54-
}
55-
```
56-
57-
#### Is Playwright thread-safe?
17+
## Documentation
5818

59-
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.
19+
[https://playwright.dev/java/docs/intro](https://playwright.dev/java/docs/intro)
6020

61-
## Examples
21+
## API Reference
6222

63-
You can find Maven project with the examples [here](./examples).
23+
[https://playwright.dev/java/docs/api/class-playwright](https://playwright.dev/java/docs/api/class-playwright)
6424

65-
#### Page screenshot
25+
## Example
6626

6727
This code snippet navigates to Playwright homepage in Chromium, Firefox and WebKit, and saves 3 screenshots.
6828

@@ -94,100 +54,9 @@ public class PageScreenshot {
9454
}
9555
```
9656

97-
#### Mobile and geolocation
98-
99-
This snippet emulates Mobile Chromium on a device at a given geolocation, navigates to openstreetmap.org, performs action and takes a screenshot.
100-
101-
```java
102-
import com.microsoft.playwright.options.*;
103-
import com.microsoft.playwright.*;
104-
105-
import java.nio.file.Paths;
106-
107-
import static java.util.Arrays.asList;
108-
109-
public class MobileAndGeolocation {
110-
public static void main(String[] args) {
111-
try (Playwright playwright = Playwright.create()) {
112-
Browser browser = playwright.chromium().launch();
113-
BrowserContext context = browser.newContext(new Browser.NewContextOptions()
114-
.setUserAgent("Mozilla/5.0 (Linux; Android 8.0; Pixel 2 Build/OPD3.170816.012) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3765.0 Mobile Safari/537.36")
115-
.setViewportSize(411, 731)
116-
.setDeviceScaleFactor(2.625)
117-
.setIsMobile(true)
118-
.setHasTouch(true)
119-
.setLocale("en-US")
120-
.setGeolocation(41.889938, 12.492507)
121-
.setPermissions(asList("geolocation")));
122-
Page page = context.newPage();
123-
page.navigate("https://www.openstreetmap.org/");
124-
page.click("a[data-bs-original-title=\"Show My Location\"]");
125-
page.screenshot(new Page.ScreenshotOptions().setPath(Paths.get("colosseum-pixel2.png")));
126-
}
127-
}
128-
}
129-
```
130-
131-
#### Evaluate JavaScript in browser
132-
133-
This code snippet navigates to example.com in Firefox, and executes a script in the page context.
134-
135-
```java
136-
import com.microsoft.playwright.*;
137-
138-
public class EvaluateInBrowserContext {
139-
public static void main(String[] args) {
140-
try (Playwright playwright = Playwright.create()) {
141-
Browser browser = playwright.firefox().launch();
142-
BrowserContext context = browser.newContext();
143-
Page page = context.newPage();
144-
page.navigate("https://www.example.com/");
145-
Object dimensions = page.evaluate("() => {\n" +
146-
" return {\n" +
147-
" width: document.documentElement.clientWidth,\n" +
148-
" height: document.documentElement.clientHeight,\n" +
149-
" deviceScaleFactor: window.devicePixelRatio\n" +
150-
" }\n" +
151-
"}");
152-
System.out.println(dimensions);
153-
}
154-
}
155-
}
156-
```
157-
158-
#### Intercept network requests
159-
160-
This code snippet sets up request routing for a WebKit page to log all network requests.
161-
162-
```java
163-
import com.microsoft.playwright.*;
164-
165-
public class InterceptNetworkRequests {
166-
public static void main(String[] args) {
167-
try (Playwright playwright = Playwright.create()) {
168-
Browser browser = playwright.webkit().launch();
169-
BrowserContext context = browser.newContext();
170-
Page page = context.newPage();
171-
page.route("**", route -> {
172-
System.out.println(route.request().url());
173-
route.resume();
174-
});
175-
page.navigate("http://todomvc.com");
176-
}
177-
}
178-
}
179-
```
180-
181-
## Documentation
182-
183-
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
19258

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
60+
- [Node.js (JavaScript / TypeScript)](https://playwright.dev/docs/intro),
61+
- [Python](https://playwright.dev/python/docs/intro).
62+
- [.NET](https://playwright.dev/dotnet/docs/intro),

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
<maven.compiler.target>8</maven.compiler.target>
4646
<maven.compiler.parameters>true</maven.compiler.parameters>
4747
<gson.version>2.12.1</gson.version>
48-
<junit.version>5.12.0</junit.version>
48+
<junit.version>5.12.1</junit.version>
4949
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
5050
<websocket.version>1.6.0</websocket.version>
5151
<slf4j.version>2.0.17</slf4j.version>

scripts/DRIVER_VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.51.0
1+
1.51.1

0 commit comments

Comments
 (0)