selenium-rc

Selenium check if element exists without exception

Selenium check if element exists without exception Question: I want to just check if an element is there or not within a for loop but it just throws an exception and ends the code. How do I go about this? Asked By: Hocian Wade || Source Answers: Instead of driver.find_element you should use driver.find_elements method …

Total answers: 2

Selenium testing without browser

Selenium testing without browser Question: I use Selenium RC for testing. Now to perform a load test, I want to run parallel test cases. Is there any way to run them without opening a browser? Asked By: Mohyt || Source Answers: You can run Selenium headless, take a look at this question/answer: Is it possible …

Total answers: 9

Is it possible to hide the browser in Selenium RC?

Is it possible to hide the browser in Selenium RC? Question: I am using Selenium RC to automate some browser operations but I want the browser to be invisible. Is this possible? How? What about Selenium Grid? Can I hide the Selenium RC window also? Asked By: Amit || Source Answers: There are a few …

Total answers: 12