Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: update atoms to selenium 4.19.0 basis #375

Merged
merged 5 commits into from
Apr 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions atoms-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,4 @@ get deleted on build).
- https://github.com/SeleniumHQ/selenium/pull/12557

When these PRs are merged and our Selenium version updated to match, we can delete this note!

193 changes: 95 additions & 98 deletions atoms/clear.js

Large diffs are not rendered by default.

149 changes: 73 additions & 76 deletions atoms/click.js

Large diffs are not rendered by default.

65 changes: 33 additions & 32 deletions atoms/find_element.js

Large diffs are not rendered by default.

53 changes: 27 additions & 26 deletions atoms/find_element_fragment.js

Large diffs are not rendered by default.

53 changes: 27 additions & 26 deletions atoms/find_elements.js

Large diffs are not rendered by default.

77 changes: 39 additions & 38 deletions atoms/frame_by_id_or_name.js

Large diffs are not rendered by default.

93 changes: 4 additions & 89 deletions atoms/get_attribute.js

Large diffs are not rendered by default.

77 changes: 6 additions & 71 deletions atoms/get_effective_style.js

Large diffs are not rendered by default.

138 changes: 67 additions & 71 deletions atoms/get_size.js

Large diffs are not rendered by default.

161 changes: 79 additions & 82 deletions atoms/get_text.js

Large diffs are not rendered by default.

144 changes: 70 additions & 74 deletions atoms/get_top_left_coordinates.js

Large diffs are not rendered by default.

155 changes: 76 additions & 79 deletions atoms/is_displayed.js

Large diffs are not rendered by default.

70 changes: 1 addition & 69 deletions atoms/is_editable.js

Large diffs are not rendered by default.

75 changes: 4 additions & 71 deletions atoms/is_focusable.js

Large diffs are not rendered by default.

114 changes: 23 additions & 91 deletions atoms/is_interactable.js

Large diffs are not rendered by default.

43 changes: 38 additions & 5 deletions atoms/lastupdate
Original file line number Diff line number Diff line change
@@ -1,9 +1,42 @@
Tue Aug 15 2023 11:18:44 GMT-0700 (Pacific Daylight Time)
Tue Apr 16 2024 01:06:16 GMT-0700 (Pacific Daylight Time)

commit 040bc5406b3535e4087638b4a20b6d0544224639 (grafted, HEAD, tag: refs/tags/selenium-4.11.0)
commit 5f9cec8963b33a7708619d666a5ce0b2f6542c7d (grafted, HEAD, tag: refs/tags/selenium-4.19.0)
Author: Diego Molina <[email protected]>
Date: Mon Jul 31 20:57:23 2023 +0200
Date: Wed Mar 27 15:54:24 2024 +0100

Bumping versions to 4.11.0
Release 4.19.0 (#13747)

Selenium Manager binaries taken from https://github.com/SeleniumHQ/selenium/actions/runs/5717423581
* update Rust version to 0.4.19

* Rust Changelog

* [build] Prepare for release of Selenium 4.19.0 (#13746)

* Update supported versions for Chrome DevTools

* Update selenium manager version

* Update Maven Dependencies

* Update authors file

* FIX CHANGELOGS BEFORE MERGING!

Update versions and change logs to release Selenium 4.19.0

* [build] Adapting changelogs

* [py] Setting python version to 4.19.0

* Making format script happy

---------

Co-authored-by: Selenium CI Bot <[email protected]>
Co-authored-by: Diego Molina <[email protected]>
Co-authored-by: Diego Molina <[email protected]>

---------

Co-authored-by: Selenium CI Bot <[email protected]>
Co-authored-by: Selenium CI Bot <[email protected]>
189 changes: 93 additions & 96 deletions atoms/submit.js

Large diffs are not rendered by default.

189 changes: 93 additions & 96 deletions atoms/type.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion scripts/common.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ const fs = require('fs');
const { exec } = require('teen_process');
const { glob } = require('glob');

const SELENIUM_BRANCH = 'selenium-4.11.0';
const SELENIUM_BRANCH = 'selenium-4.19.0';
const SELENIUM_GITHUB = 'https://github.com/SeleniumHQ/selenium.git';

const BAZEL_WD_ATOMS_TARGET = '//javascript/webdriver/atoms/...';
Expand Down
Loading