1
0
mirror of synced 2026-05-23 03:03:15 +00:00

Compare commits

...

4 Commits

Author SHA1 Message Date
Yury Semikhatsky 0a4159f15e chore: update released version to 0.181.0 2021-02-19 09:38:58 -08:00
Yury Semikhatsky b2c00a2195 fix: update worflow configs to run on release branches (#288) 2021-02-19 09:31:36 -08:00
Yury Semikhatsky 98195b762b chore: roll 1.8.1 driver in the release branch (#287) 2021-02-19 09:22:54 -08:00
Yury Semikhatsky b9dbd56765 chore: set version to 0.180.0 (#227) 2021-01-22 17:56:03 -08:00
11 changed files with 29 additions and 15 deletions
+8 -2
View File
@@ -1,9 +1,15 @@
name: Test
on:
push:
branches: [ master ]
branches:
- master
- release-*
pull_request:
branches: [ master ]
branches:
- master
- release-*
jobs:
build:
timeout-minutes: 30
+6 -2
View File
@@ -1,12 +1,16 @@
name: Verify API
on:
push:
branches: [ master ]
branches:
- master
- release-*
paths:
- 'scripts/*'
- 'api-generator/*'
pull_request:
branches: [ master ]
branches:
- master
- release-*
paths:
- 'scripts/**'
- 'api-generator/**'
+1 -1
View File
@@ -6,7 +6,7 @@
<parent>
<groupId>com.microsoft.playwright</groupId>
<artifactId>parent-pom</artifactId>
<version>0.180.0-SNAPSHOT</version>
<version>0.181.0</version>
</parent>
<artifactId>driver-bundle</artifactId>
+1 -1
View File
@@ -6,7 +6,7 @@
<parent>
<groupId>com.microsoft.playwright</groupId>
<artifactId>parent-pom</artifactId>
<version>0.180.0-SNAPSHOT</version>
<version>0.181.0</version>
</parent>
<artifactId>driver</artifactId>
+1 -1
View File
@@ -7,7 +7,7 @@
<parent>
<groupId>com.microsoft.playwright</groupId>
<artifactId>parent-pom</artifactId>
<version>0.180.0-SNAPSHOT</version>
<version>0.181.0</version>
</parent>
<artifactId>playwright</artifactId>
@@ -1225,7 +1225,8 @@ public interface Frame {
return isHidden(selector, null);
}
/**
* Returns whether the element is hidden, the opposite of [visible](./actionability.md#visible).
* Returns whether the element is hidden, the opposite of [visible](./actionability.md#visible). {@code selector} that does not
* match any elements is considered hidden.
*
* @param selector A selector to search for element. If there are multiple elements satisfying the selector, the first will be used. See
* [working with selectors](./selectors.md#working-with-selectors) for more details.
@@ -1235,7 +1236,8 @@ public interface Frame {
return isVisible(selector, null);
}
/**
* Returns whether the element is [visible](./actionability.md#visible).
* Returns whether the element is [visible](./actionability.md#visible). {@code selector} that does not match any elements is
* considered not visible.
*
* @param selector A selector to search for element. If there are multiple elements satisfying the selector, the first will be used. See
* [working with selectors](./selectors.md#working-with-selectors) for more details.
@@ -1977,7 +1977,8 @@ public interface Page {
return isHidden(selector, null);
}
/**
* Returns whether the element is hidden, the opposite of [visible](./actionability.md#visible).
* Returns whether the element is hidden, the opposite of [visible](./actionability.md#visible). {@code selector} that does not
* match any elements is considered hidden.
*
* @param selector A selector to search for element. If there are multiple elements satisfying the selector, the first will be used. See
* [working with selectors](./selectors.md#working-with-selectors) for more details.
@@ -1987,7 +1988,8 @@ public interface Page {
return isVisible(selector, null);
}
/**
* Returns whether the element is [visible](./actionability.md#visible).
* Returns whether the element is [visible](./actionability.md#visible). {@code selector} that does not match any elements is
* considered not visible.
*
* @param selector A selector to search for element. If there are multiple elements satisfying the selector, the first will be used. See
* [working with selectors](./selectors.md#working-with-selectors) for more details.
+1 -1
View File
@@ -6,7 +6,7 @@
<groupId>com.microsoft.playwright</groupId>
<artifactId>parent-pom</artifactId>
<version>0.180.0-SNAPSHOT</version>
<version>0.181.0</version>
<packaging>pom</packaging>
<name>Playwright Parent Project</name>
<description>Java library to automate Chromium, Firefox and WebKit with a single API.
+1 -1
View File
@@ -1 +1 @@
1.8.0
1.8.1
+1 -1
View File
@@ -6,7 +6,7 @@
<groupId>com.microsoft.playwright</groupId>
<artifactId>api-generator</artifactId>
<version>0.180.0-SNAPSHOT</version>
<version>0.181.0</version>
<name>Playwright - API Generator</name>
<description>
This is an internal module used to generate Java API from the upstream Playwright
+1 -1
View File
@@ -6,7 +6,7 @@
<groupId>com.microsoft.playwright</groupId>
<artifactId>update-version</artifactId>
<version>0.180.0-SNAPSHOT</version>
<version>0.181.0</version>
<name>Playwright - Update Version in Documentation</name>
<description>
This is an internal module used to update versions in the documentation based on