1
0
mirror of synced 2026-08-31 19:55:37 +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 name: Test
on: on:
push: push:
branches: [ master ] branches:
- master
- release-*
pull_request: pull_request:
branches: [ master ] branches:
- master
- release-*
jobs: jobs:
build: build:
timeout-minutes: 30 timeout-minutes: 30
+6 -2
View File
@@ -1,12 +1,16 @@
name: Verify API name: Verify API
on: on:
push: push:
branches: [ master ] branches:
- master
- release-*
paths: paths:
- 'scripts/*' - 'scripts/*'
- 'api-generator/*' - 'api-generator/*'
pull_request: pull_request:
branches: [ master ] branches:
- master
- release-*
paths: paths:
- 'scripts/**' - 'scripts/**'
- 'api-generator/**' - 'api-generator/**'
+1 -1
View File
@@ -6,7 +6,7 @@
<parent> <parent>
<groupId>com.microsoft.playwright</groupId> <groupId>com.microsoft.playwright</groupId>
<artifactId>parent-pom</artifactId> <artifactId>parent-pom</artifactId>
<version>0.180.0-SNAPSHOT</version> <version>0.181.0</version>
</parent> </parent>
<artifactId>driver-bundle</artifactId> <artifactId>driver-bundle</artifactId>
+1 -1
View File
@@ -6,7 +6,7 @@
<parent> <parent>
<groupId>com.microsoft.playwright</groupId> <groupId>com.microsoft.playwright</groupId>
<artifactId>parent-pom</artifactId> <artifactId>parent-pom</artifactId>
<version>0.180.0-SNAPSHOT</version> <version>0.181.0</version>
</parent> </parent>
<artifactId>driver</artifactId> <artifactId>driver</artifactId>
+1 -1
View File
@@ -7,7 +7,7 @@
<parent> <parent>
<groupId>com.microsoft.playwright</groupId> <groupId>com.microsoft.playwright</groupId>
<artifactId>parent-pom</artifactId> <artifactId>parent-pom</artifactId>
<version>0.180.0-SNAPSHOT</version> <version>0.181.0</version>
</parent> </parent>
<artifactId>playwright</artifactId> <artifactId>playwright</artifactId>
@@ -1225,7 +1225,8 @@ public interface Frame {
return isHidden(selector, null); 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 * @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. * [working with selectors](./selectors.md#working-with-selectors) for more details.
@@ -1235,7 +1236,8 @@ public interface Frame {
return isVisible(selector, null); 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 * @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. * [working with selectors](./selectors.md#working-with-selectors) for more details.
@@ -1977,7 +1977,8 @@ public interface Page {
return isHidden(selector, null); 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 * @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. * [working with selectors](./selectors.md#working-with-selectors) for more details.
@@ -1987,7 +1988,8 @@ public interface Page {
return isVisible(selector, null); 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 * @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. * [working with selectors](./selectors.md#working-with-selectors) for more details.
+1 -1
View File
@@ -6,7 +6,7 @@
<groupId>com.microsoft.playwright</groupId> <groupId>com.microsoft.playwright</groupId>
<artifactId>parent-pom</artifactId> <artifactId>parent-pom</artifactId>
<version>0.180.0-SNAPSHOT</version> <version>0.181.0</version>
<packaging>pom</packaging> <packaging>pom</packaging>
<name>Playwright Parent Project</name> <name>Playwright Parent Project</name>
<description>Java library to automate Chromium, Firefox and WebKit with a single API. <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> <groupId>com.microsoft.playwright</groupId>
<artifactId>api-generator</artifactId> <artifactId>api-generator</artifactId>
<version>0.180.0-SNAPSHOT</version> <version>0.181.0</version>
<name>Playwright - API Generator</name> <name>Playwright - API Generator</name>
<description> <description>
This is an internal module used to generate Java API from the upstream Playwright 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> <groupId>com.microsoft.playwright</groupId>
<artifactId>update-version</artifactId> <artifactId>update-version</artifactId>
<version>0.180.0-SNAPSHOT</version> <version>0.181.0</version>
<name>Playwright - Update Version in Documentation</name> <name>Playwright - Update Version in Documentation</name>
<description> <description>
This is an internal module used to update versions in the documentation based on This is an internal module used to update versions in the documentation based on