Skip to content

Commit

Permalink
bump Selenium from 4.18.1 to 4.19.1
Browse files Browse the repository at this point in the history
... and Appium from 9.2.0 to 9.2.2
  • Loading branch information
asolntsev committed Mar 29, 2024
1 parent 57ac021 commit 5787baf
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test-with-selenium-nightly-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: Build with Gradle
uses: gradle/gradle-build-action@v3
with:
arguments: ${{ matrix.gradle-task }} -PseleniumVersionNightlyBuild=4.19.0-SNAPSHOT --no-parallel --no-daemon --console=plain
arguments: ${{ matrix.gradle-task }} -PseleniumVersionNightlyBuild=4.20.0-SNAPSHOT --no-parallel --no-daemon --console=plain
- uses: actions/upload-artifact@v4
if: always()
with:
Expand Down
2 changes: 1 addition & 1 deletion gradle/dependencies.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ext {
seleniumVersionStable = '4.18.1'
seleniumVersionStable = '4.19.1'
seleniumVersion = project.properties['seleniumVersionNightlyBuild'] ?: seleniumVersionStable
httpClientVersion = '5.3.1'
junitVersion = '5.10.2'
Expand Down
2 changes: 1 addition & 1 deletion modules/appium/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ dependencies {
testImplementation project(':modules:core').sourceSets.test.output
testImplementation("org.junit.jupiter:junit-jupiter-api:$junitVersion")

api("io.appium:java-client:9.2.0") {
api("io.appium:java-client:9.2.2") {
exclude group: 'io.opentelemetry'
exclude group: 'org.slf4j'
exclude group: 'org.seleniumhq'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
import org.openqa.selenium.chromium.HasCdp;
import org.openqa.selenium.devtools.DevTools;
import org.openqa.selenium.devtools.HasDevTools;
import org.openqa.selenium.devtools.v122.page.Page;
import org.openqa.selenium.devtools.v122.page.model.Viewport;
import org.openqa.selenium.devtools.v123.page.Page;
import org.openqa.selenium.devtools.v123.page.model.Viewport;
import org.openqa.selenium.firefox.HasFullPageScreenshot;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@
import org.openqa.selenium.WebElement;
import org.openqa.selenium.devtools.DevTools;
import org.openqa.selenium.devtools.HasDevTools;
import org.openqa.selenium.devtools.v122.browser.Browser;
import org.openqa.selenium.devtools.v122.browser.model.DownloadProgress;
import org.openqa.selenium.devtools.v122.browser.model.DownloadWillBegin;
import org.openqa.selenium.devtools.v122.page.Page;
import org.openqa.selenium.devtools.v123.browser.Browser;
import org.openqa.selenium.devtools.v123.browser.model.DownloadProgress;
import org.openqa.selenium.devtools.v123.browser.model.DownloadWillBegin;
import org.openqa.selenium.devtools.v123.page.Page;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

Expand All @@ -33,8 +33,8 @@
import static java.lang.System.currentTimeMillis;
import static java.util.Collections.emptyMap;
import static java.util.Objects.requireNonNull;
import static org.openqa.selenium.devtools.v122.browser.Browser.downloadProgress;
import static org.openqa.selenium.devtools.v122.browser.Browser.downloadWillBegin;
import static org.openqa.selenium.devtools.v123.browser.Browser.downloadProgress;
import static org.openqa.selenium.devtools.v123.browser.Browser.downloadWillBegin;

@ParametersAreNonnullByDefault
public class DownloadFileWithCdp {
Expand Down

0 comments on commit 5787baf

Please sign in to comment.