Skip to content

Commit f411bf4

Browse files
authored
chore: roll driver to 01/13/22 (#771)
1 parent 25a0927 commit f411bf4

File tree

5 files changed

+18
-2
lines changed

5 files changed

+18
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Playwright is a Java library to automate [Chromium](https://www.chromium.org/Hom
1111

1212
| | Linux | macOS | Windows |
1313
| :--- | :---: | :---: | :---: |
14-
| Chromium <!-- GEN:chromium-version -->99.0.4804.0<!-- GEN:stop --> | :white_check_mark: | :white_check_mark: | :white_check_mark: |
14+
| Chromium <!-- GEN:chromium-version -->99.0.4812.0<!-- GEN:stop --> | :white_check_mark: | :white_check_mark: | :white_check_mark: |
1515
| WebKit <!-- GEN:webkit-version -->15.4<!-- GEN:stop --> ||||
1616
| Firefox <!-- GEN:firefox-version -->95.0<!-- GEN:stop --> | :white_check_mark: | :white_check_mark: | :white_check_mark: |
1717

playwright/src/main/java/com/microsoft/playwright/APIRequest.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,8 @@ class NewContextOptions {
3535
* <li> baseURL: {@code http://localhost:3000} and sending request to {@code /bar.html} results in {@code http://localhost:3000/bar.html}</li>
3636
* <li> baseURL: {@code http://localhost:3000/foo/} and sending request to {@code ./bar.html} results in
3737
* {@code http://localhost:3000/foo/bar.html}</li>
38+
* <li> baseURL: {@code http://localhost:3000/foo} (without trailing slash) and navigating to {@code ./bar.html} results in
39+
* {@code http://localhost:3000/bar.html}</li>
3840
* </ul>
3941
*/
4042
public String baseURL;
@@ -85,6 +87,8 @@ class NewContextOptions {
8587
* <li> baseURL: {@code http://localhost:3000} and sending request to {@code /bar.html} results in {@code http://localhost:3000/bar.html}</li>
8688
* <li> baseURL: {@code http://localhost:3000/foo/} and sending request to {@code ./bar.html} results in
8789
* {@code http://localhost:3000/foo/bar.html}</li>
90+
* <li> baseURL: {@code http://localhost:3000/foo} (without trailing slash) and navigating to {@code ./bar.html} results in
91+
* {@code http://localhost:3000/bar.html}</li>
8892
* </ul>
8993
*/
9094
public NewContextOptions setBaseURL(String baseURL) {

playwright/src/main/java/com/microsoft/playwright/Browser.java

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,8 @@ class NewContextOptions {
6969
* <ul>
7070
* <li> baseURL: {@code http://localhost:3000} and navigating to {@code /bar.html} results in {@code http://localhost:3000/bar.html}</li>
7171
* <li> baseURL: {@code http://localhost:3000/foo/} and navigating to {@code ./bar.html} results in {@code http://localhost:3000/foo/bar.html}</li>
72+
* <li> baseURL: {@code http://localhost:3000/foo} (without trailing slash) and navigating to {@code ./bar.html} results in
73+
* {@code http://localhost:3000/bar.html}</li>
7274
* </ul>
7375
*/
7476
public String baseURL;
@@ -220,6 +222,8 @@ public NewContextOptions setAcceptDownloads(boolean acceptDownloads) {
220222
* <ul>
221223
* <li> baseURL: {@code http://localhost:3000} and navigating to {@code /bar.html} results in {@code http://localhost:3000/bar.html}</li>
222224
* <li> baseURL: {@code http://localhost:3000/foo/} and navigating to {@code ./bar.html} results in {@code http://localhost:3000/foo/bar.html}</li>
225+
* <li> baseURL: {@code http://localhost:3000/foo} (without trailing slash) and navigating to {@code ./bar.html} results in
226+
* {@code http://localhost:3000/bar.html}</li>
223227
* </ul>
224228
*/
225229
public NewContextOptions setBaseURL(String baseURL) {
@@ -493,6 +497,8 @@ class NewPageOptions {
493497
* <ul>
494498
* <li> baseURL: {@code http://localhost:3000} and navigating to {@code /bar.html} results in {@code http://localhost:3000/bar.html}</li>
495499
* <li> baseURL: {@code http://localhost:3000/foo/} and navigating to {@code ./bar.html} results in {@code http://localhost:3000/foo/bar.html}</li>
500+
* <li> baseURL: {@code http://localhost:3000/foo} (without trailing slash) and navigating to {@code ./bar.html} results in
501+
* {@code http://localhost:3000/bar.html}</li>
496502
* </ul>
497503
*/
498504
public String baseURL;
@@ -644,6 +650,8 @@ public NewPageOptions setAcceptDownloads(boolean acceptDownloads) {
644650
* <ul>
645651
* <li> baseURL: {@code http://localhost:3000} and navigating to {@code /bar.html} results in {@code http://localhost:3000/bar.html}</li>
646652
* <li> baseURL: {@code http://localhost:3000/foo/} and navigating to {@code ./bar.html} results in {@code http://localhost:3000/foo/bar.html}</li>
653+
* <li> baseURL: {@code http://localhost:3000/foo} (without trailing slash) and navigating to {@code ./bar.html} results in
654+
* {@code http://localhost:3000/bar.html}</li>
647655
* </ul>
648656
*/
649657
public NewPageOptions setBaseURL(String baseURL) {

playwright/src/main/java/com/microsoft/playwright/BrowserType.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -387,6 +387,8 @@ class LaunchPersistentContextOptions {
387387
* <ul>
388388
* <li> baseURL: {@code http://localhost:3000} and navigating to {@code /bar.html} results in {@code http://localhost:3000/bar.html}</li>
389389
* <li> baseURL: {@code http://localhost:3000/foo/} and navigating to {@code ./bar.html} results in {@code http://localhost:3000/foo/bar.html}</li>
390+
* <li> baseURL: {@code http://localhost:3000/foo} (without trailing slash) and navigating to {@code ./bar.html} results in
391+
* {@code http://localhost:3000/bar.html}</li>
390392
* </ul>
391393
*/
392394
public String baseURL;
@@ -604,6 +606,8 @@ public LaunchPersistentContextOptions setArgs(List<String> args) {
604606
* <ul>
605607
* <li> baseURL: {@code http://localhost:3000} and navigating to {@code /bar.html} results in {@code http://localhost:3000/bar.html}</li>
606608
* <li> baseURL: {@code http://localhost:3000/foo/} and navigating to {@code ./bar.html} results in {@code http://localhost:3000/foo/bar.html}</li>
609+
* <li> baseURL: {@code http://localhost:3000/foo} (without trailing slash) and navigating to {@code ./bar.html} results in
610+
* {@code http://localhost:3000/bar.html}</li>
607611
* </ul>
608612
*/
609613
public LaunchPersistentContextOptions setBaseURL(String baseURL) {

scripts/CLI_VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.18.0-alpha-jan-10-2022
1+
1.18.0-beta-1642115083000

0 commit comments

Comments
 (0)