selenium
Here are 6,411 public repositories matching this topic...
-
Updated
Oct 1, 2020 - Python
-
Updated
Nov 13, 2018 - TypeScript
-
Updated
Jun 10, 2021 - JavaScript
-
Updated
May 15, 2020 - Python
-
Updated
Jun 3, 2021 - JavaScript
-
Updated
Jun 8, 2021 - Python
-
Updated
Jun 8, 2021 - Shell
-
Updated
May 21, 2021 - PHP
-
Updated
May 5, 2021 - Shell
-
Updated
Jun 9, 2021 - JavaScript
-
Updated
May 24, 2021 - Python
-
Updated
Mar 10, 2021 - Java
My project have routing based on hosts. But web driver make request to http://127.0.0.1:9080.
How can i change host?
-
Updated
Jun 7, 2021 - Python
-
Updated
May 21, 2021 - Go
- Linux
- Windows
- Firefox
Linux is pretty similar and even easier than macOS, there is a google-chrome
binary in PATH
and it can be parsed to any of the channels. (google-chrome --version
)
-
Updated
Jun 2, 2021 - HTML
-
Updated
Jun 9, 2021 - Java
-
Updated
Oct 17, 2019 - Python
-
Updated
May 20, 2021 - JavaScript
-
Updated
Apr 15, 2021
-
Updated
Jun 10, 2021 - Python
Today, I stumbled upon the lack of ability to set the page load timeout defined by the W3C WebDriver standard [1]. The underlying Python Selenium implementation does provide a corresponding set_page_load_timeout
method in selenium.webdriver.remote.webdriver.WebDriver
[2].
Too me, it is not completely clear how this should be handled on the library level. SeleniumLibrary currently has two ki
Improve this page
Add a description, image, and links to the selenium topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the selenium topic, visit your repo's landing page and select "manage topics."
The current implementation of
find_by_text
uses the following xpath://*[text()="some text"]
, which only looks at the first text node within an element. This makes it difficult to query for elements with text split across multiple text nodes.I think it would be useful to add an alternative that acts more like
element.textContent()
, querying against all inner text of an element rather tha