Skip to content

Commit

Permalink
Merge branch 'trunk' into add-js-service-example
Browse files Browse the repository at this point in the history
  • Loading branch information
harsha509 authored Aug 12, 2024
2 parents 015b66c + c94b5a5 commit cc00794
Show file tree
Hide file tree
Showing 8 changed files with 39 additions and 14 deletions.
2 changes: 1 addition & 1 deletion examples/java/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ repositories {
}

dependencies {
testImplementation 'org.seleniumhq.selenium:selenium-java:4.23.0'
testImplementation 'org.seleniumhq.selenium:selenium-java:4.23.1'
testImplementation 'org.junit.jupiter:junit-jupiter-engine:5.10.3'
}

Expand Down
2 changes: 1 addition & 1 deletion examples/java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<selenium.version>4.23.0</selenium.version>
<selenium.version>4.23.1</selenium.version>
</properties>

<repositories>
Expand Down
14 changes: 7 additions & 7 deletions examples/javascript/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion examples/javascript/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@
"selenium-webdriver": "4.23.0"
},
"devDependencies": {
"mocha": "10.7.0"
"mocha": "10.7.3"
}
}
2 changes: 1 addition & 1 deletion examples/kotlin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<maven-surefire-plugin.version>3.3.1</maven-surefire-plugin.version>

<java.version>1.8</java.version>
<selenium.version>4.23.0</selenium.version>
<selenium.version>4.23.1</selenium.version>

<maven.compiler.target>${java.version}</maven.compiler.target>
<maven.compiler.source>${java.version}</maven.compiler.source>
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
---
title: "Welcoming Puppeteer to the WebDriver World"
linkTitle: "Welcoming Puppeteer to the WebDriver World"
date: 2024-08-09
tags: ["selenium"]
categories: ["general"]
author: David Burns [@automatedtester](https://www.linkedin.com/in/theautomatedtester/)
description: >
Puppeteer has moved over to support WebDriver BiDi getting full support in Chromium browsers and Firefox.
---

The Selenium Project has always been fully supportive of creating a standard to improve the quality
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
with the Safari, Edge, Chrome, and Firefox teams on the [WebDriver-BiDi specification](https://w3c.github.io/webdriver-bidi).

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
that allows WebDriver clients to have event driven APIs instead of the synchronous way Selenium has done it before.

This new protocol allows us to be able to do things Selenium always wanted to do but was never surfaced to us in a
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/)

You can read about the latest changes on [Mozilla Hacks](https://hacks.mozilla.org/2024/08/puppeteer-support-for-firefox/)
and on the [Chrome Developer Blog](https://developer.chrome.com/blog/firefox-support-in-puppeteer-with-webdriver-bidi?hl=en).

Congratulations to everyone in making this a reality and supporting a standardised web!
2 changes: 1 addition & 1 deletion website_and_docs/layouts/downloads/list.html
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
<div class="card-body">
<p class="card-text">
Latest stable version
<a href="https://github.com/SeleniumHQ/selenium/releases/download/selenium-4.23.0/selenium-server-4.23.0.jar">4.23.0</a>
<a href="https://github.com/SeleniumHQ/selenium/releases/download/selenium-4.23.0/selenium-server-4.23.1.jar">4.23.1</a>
</p>
<p class="card-text">
To use the Selenium Server in a Grid configuration see the
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,8 @@ <h2 id="bindings" class="card-title">Selenium Clients and WebDriver Language Bin
</p>
<p class="card-text m-0 pb-1">
Stable:
<a href="https://github.com/SeleniumHQ/selenium/releases/download/selenium-4.23.0/selenium-java-4.23.0.zip" class="card-link">
4.23.0 (July 19, 2024)
<a href="https://github.com/SeleniumHQ/selenium/releases/download/selenium-4.23.0/selenium-java-4.23.1.zip" class="card-link">
4.23.1 (August 09, 2024)
</a>
</p>
<p class="card-text m-0 pb-1">
Expand Down

0 comments on commit cc00794

Please sign in to comment.