Skip to content

Commit 7b1566b

Browse files
authored
Merge branch 'trunk' into renovate/selenium-devtools-0.x
2 parents 0b2f20e + 1c56374 commit 7b1566b

File tree

6 files changed

+36
-11
lines changed

6 files changed

+36
-11
lines changed

examples/java/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ repositories {
1010
}
1111

1212
dependencies {
13-
testImplementation 'org.seleniumhq.selenium:selenium-java:4.23.0'
13+
testImplementation 'org.seleniumhq.selenium:selenium-java:4.23.1'
1414
testImplementation 'org.junit.jupiter:junit-jupiter-engine:5.10.3'
1515
}
1616

examples/java/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<maven.compiler.source>11</maven.compiler.source>
1414
<maven.compiler.target>11</maven.compiler.target>
1515
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
16-
<selenium.version>4.23.0</selenium.version>
16+
<selenium.version>4.23.1</selenium.version>
1717
</properties>
1818

1919
<repositories>

examples/javascript/package-lock.json

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/javascript/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@
1111
"selenium-webdriver": "4.23.0"
1212
},
1313
"devDependencies": {
14-
"mocha": "10.7.0"
14+
"mocha": "10.7.3"
1515
}
1616
}

examples/kotlin/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<maven-surefire-plugin.version>3.3.1</maven-surefire-plugin.version>
2121

2222
<java.version>1.8</java.version>
23-
<selenium.version>4.23.0</selenium.version>
23+
<selenium.version>4.23.1</selenium.version>
2424

2525
<maven.compiler.target>${java.version}</maven.compiler.target>
2626
<maven.compiler.source>${java.version}</maven.compiler.source>
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
---
2+
title: "Welcoming Puppeteer to the WebDriver World"
3+
linkTitle: "Welcoming Puppeteer to the WebDriver World"
4+
date: 2024-08-09
5+
tags: ["selenium"]
6+
categories: ["general"]
7+
author: David Burns [@automatedtester](https://www.linkedin.com/in/theautomatedtester/)
8+
description: >
9+
Puppeteer has moved over to support WebDriver BiDi getting full support in Chromium browsers and Firefox.
10+
---
11+
12+
The Selenium Project has always been fully supportive of creating a standard to improve the quality
13+
of the web that we use. We started with the [WebDriver Specification](https://w3c.github.io/webdriver) and over the last couple of years have been working
14+
with the Safari, Edge, Chrome, and Firefox teams on the [WebDriver-BiDi specification](https://w3c.github.io/webdriver-bidi).
15+
16+
Today, we are celebrating that [Puppeteer](https://pptr.dev) has moved over to using [WebDriver-BiDi](https://w3c.github.io/webdriver-bidi), the new WebDriver Specification
17+
that allows WebDriver clients to have event driven APIs instead of the synchronous way Selenium has done it before.
18+
19+
This new protocol allows us to be able to do things Selenium always wanted to do but was never surfaced to us in a
20+
meaningful way. We have documented all the latest additions to Selenium, thanks to WebDriver-BiDi, in our [documentation](https://www.selenium.dev/documentation/webdriver/bidi/)
21+
22+
You can read about the latest changes on [Mozilla Hacks](https://hacks.mozilla.org/2024/08/puppeteer-support-for-firefox/)
23+
and on the [Chrome Developer Blog](https://developer.chrome.com/blog/firefox-support-in-puppeteer-with-webdriver-bidi?hl=en).
24+
25+
Congratulations to everyone in making this a reality and supporting a standardised web!

0 commit comments

Comments
 (0)