File tree Expand file tree Collapse file tree 2 files changed +24
-1
lines changed Expand file tree Collapse file tree 2 files changed +24
-1
lines changed Original file line number Diff line number Diff line change
1
+ 4.0.0.alpha4 (2020-01-09)
2
+ =========================
3
+
4
+ Ruby:
5
+ * Added initial support for relative locators, which allow to find elements
6
+ above/below/left/right/near another element. For example, you can find all
7
+ the cells in a table to the right of your starting cell:
8
+ start_cell = driver.find_element(css: 'td')
9
+ right_cells = driver.find_elements(relative: {tag_name: 'td', right: start_cell})
10
+ The documentation is still lacking so refer to examples in df6be2e962.
11
+ * Added ability to silence certain logger messages by using it's identifiers:
12
+ Selenium::WebDriver.logger.ignore(:driver_path)
13
+ * Added new dependency: websocket. It's used for communicating with Chrome DevTools.
14
+ * Loosened childprocess dependency to allow using version 2.0+.
15
+ * Loosened rubyzip dependency to allow using version 2.0+.
16
+ * Fixed Errno::EACCES error on Linux DeX and similar distributes
17
+
18
+ Chrome:
19
+ * Added initial support for communicating with Chrome DevTools. The implementation
20
+ is very basic and lacks CDP domains, events and types - those will be added
21
+ in future releases. Still, it allows to execute simple commands to DevTools:
22
+ driver.devtools.send('Page.navigate', {url: 'https://google.com'})
23
+
1
24
4.0.0.alpha3 (2019-07-08)
2
25
=========================
3
26
Original file line number Diff line number Diff line change 19
19
20
20
module Selenium
21
21
module WebDriver
22
- VERSION = '4.0.0.alpha3 '
22
+ VERSION = '4.0.0.alpha4 '
23
23
end # WebDriver
24
24
end # Selenium
You can’t perform that action at this time.
0 commit comments