Skip to content

Commit 8226058

Browse files
authored
chore: roll 1.41.2 driver, mark 1.41.2 (#1471)
1 parent bae57ee commit 8226058

File tree

13 files changed

+14
-12
lines changed

13 files changed

+14
-12
lines changed

driver-bundle/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.microsoft.playwright</groupId>
88
<artifactId>parent-pom</artifactId>
9-
<version>1.41.1</version>
9+
<version>1.41.2</version>
1010
</parent>
1111

1212
<artifactId>driver-bundle</artifactId>

driver/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.microsoft.playwright</groupId>
88
<artifactId>parent-pom</artifactId>
9-
<version>1.41.1</version>
9+
<version>1.41.2</version>
1010
</parent>
1111

1212
<artifactId>driver</artifactId>

examples/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>org.example</groupId>
88
<artifactId>examples</artifactId>
9-
<version>1.41.1</version>
9+
<version>1.41.2</version>
1010
<name>Playwright Client Examples</name>
1111
<properties>
1212
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

playwright/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>com.microsoft.playwright</groupId>
99
<artifactId>parent-pom</artifactId>
10-
<version>1.41.1</version>
10+
<version>1.41.2</version>
1111
</parent>
1212

1313
<artifactId>playwright</artifactId>

playwright/src/main/java/com/microsoft/playwright/impl/Connection.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -248,6 +248,8 @@ private void dispatch(Message message) {
248248
String callLog = formatCallLog(message.log);
249249
if (message.error.error == null) {
250250
callback.completeExceptionally(new PlaywrightException(message.error + callLog));
251+
} else if ("Expect".equals(message.error.error.name)) {
252+
callback.complete(message.result);
251253
} else if ("TimeoutError".equals(message.error.error.name)) {
252254
callback.completeExceptionally(new TimeoutError(message.error.error + callLog));
253255
} else if ("TargetClosedError".equals(message.error.error.name)) {

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>com.microsoft.playwright</groupId>
88
<artifactId>parent-pom</artifactId>
9-
<version>1.41.1</version>
9+
<version>1.41.2</version>
1010
<packaging>pom</packaging>
1111
<name>Playwright Parent Project</name>
1212
<description>Java library to automate Chromium, Firefox and WebKit with a single API.

scripts/CLI_VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.41.1
1+
1.41.2

tools/api-generator/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>com.microsoft.playwright</groupId>
88
<artifactId>api-generator</artifactId>
9-
<version>1.41.1</version>
9+
<version>1.41.2</version>
1010
<name>Playwright - API Generator</name>
1111
<description>
1212
This is an internal module used to generate Java API from the upstream Playwright

tools/test-cli-fatjar/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<modelVersion>4.0.0</modelVersion>
55
<groupId>com.microsoft.playwright</groupId>
66
<artifactId>test-cli-fatjar</artifactId>
7-
<version>1.41.1</version>
7+
<version>1.41.2</version>
88
<name>Test Playwright Command Line FatJar</name>
99
<properties>
1010
<compiler.version>1.8</compiler.version>

tools/test-cli-version/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<modelVersion>4.0.0</modelVersion>
55
<groupId>com.microsoft.playwright</groupId>
66
<artifactId>test-cli-version</artifactId>
7-
<version>1.41.1</version>
7+
<version>1.41.2</version>
88
<name>Test Playwright Command Line Version</name>
99
<properties>
1010
<compiler.version>1.8</compiler.version>

0 commit comments

Comments
 (0)