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
Copy file name to clipboardExpand all lines: README.md
+4-13Lines changed: 4 additions & 13 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -22,18 +22,13 @@ Playwright supports Java 8 and above.
22
22
23
23
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 a couple of dependencies 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).
24
24
25
-
To run Playwright simply add two dependencies to your Maven project:
25
+
To run Playwright simply add following dependency to your Maven project:
26
26
27
27
```xml
28
28
<dependency>
29
29
<groupId>com.microsoft.playwright</groupId>
30
30
<artifactId>playwright</artifactId>
31
-
<version>0.170.2</version>
32
-
</dependency>
33
-
<dependency>
34
-
<groupId>com.microsoft.playwright</groupId>
35
-
<artifactId>driver-bundle</artifactId>
36
-
<version>0.170.2</version>
31
+
<version>0.170.3</version>
37
32
</dependency>
38
33
```
39
34
@@ -87,14 +82,10 @@ public class MobileAndGeolocation {
0 commit comments