Skip to content

Releases: seleniumbase/SeleniumBase

3.4.1 - More JS. Less jQuery.

11 Jul 17:31
5b5be33
Compare
Choose a tag to compare

More JS. Less jQuery.

3.4.0 - Multiple updates

08 Jul 21:21
52947ad
Compare
Choose a tag to compare

3.3.7 - Update EdgeDriver downloads

06 Jul 22:44
536aa79
Compare
Choose a tag to compare

3.3.6 - Add a shortcut for cycling through elements with the "tab" key and then clicking the active element

03 Jul 19:57
0d7e9bd
Compare
Choose a tag to compare

Add a shortcut for cycling through elements with the "tab" key and then clicking the active element

Eg. self.send_keys("html", "\t\t\t\t\n")

This assumes that selector is html , and that the text is a series of tabs (zero or more \t) followed by one \n at the end of the string.

Examples:

self.send_keys("html", "\t\t\t\t\n")
self.send_keys("html", "\t\n")
self.send_keys("html", "\n")

Another way of clicking the active element right now is by calling:

self.click_active_element()

3.3.5 - Prefer JS over jQuery, optimize timings, and refresh example tests

01 Jul 18:38
6f2fabe
Compare
Choose a tag to compare

3.3.4 - Refactoring, optimizations, dependencies, docs

30 Jun 22:21
57171f2
Compare
Choose a tag to compare

Refactoring, optimizations, dependencies, docs

--variables=DICT
A var dict to pass to tests from the command line.

Example usage:  (with pytest)
----------------------------------------------
Option: --variables='{"special":123}'
Access: self.variables["special"]  # (123)
----------------------------------------------
Option: --variables='{"color":"red","num":42}'
Access: self.variables["color"]  # ("red")
Access: self.variables["num"]  # (42)
----------------------------------------------

3.3.3 - Proxy PAC features and bug fixes

29 Jun 03:02
b397777
Compare
Choose a tag to compare

3.3.2 - Updates for: The Recorder, Reliability, and Debug Options

26 Jun 17:16
c85ff09
Compare
Choose a tag to compare

3.3.1 - Refactoring

24 Jun 18:27
5cac752
Compare
Choose a tag to compare

3.3.0 - Selenium upgrade

24 Jun 03:31
1fc2204
Compare
Choose a tag to compare