Tagged: selenium
polyfills for cross browser support
Do you have a legacy app designed for chrome and suddenly you have to support multiple browsers like IE10+, Firefox and Chrome. Then you will have to use polyfill library. There are few options...
Error retrieving a new session from the selenium server
This is a generic error, there could be many situations which could lead to this. For me, when I updated my Google Chrome and suddenly my automation I hit this error. Here is how...
Connection refused! Is selenium server started?
When you update your Google Chrome version and suddenly when you start running automation you hit the above mentioned error. Solution Get the latest chromedriver (https://sites.google.com/a/chromium.org/chromedriver/) Make sure your automation framework uses the latest...
Selenium and xpath – locate an element using class attribute
Issue : Locate the following element using its Class. <div class=”globalContainer”> <div> … </div> </div> Resolution : You can write the following query in the browser console. $x(//div[@class=”globalContainer”]) Further Reading xPath locator Practical Examples
Selenium and xpath – locate an element using id attribute
Issue : Locate the following element using its ID. <div id=”globalContainer”> <div> … </div> </div> Resolution : You can write the following query in the browser console. $x(//div[@id=”globalContainer”]) Further Reading xPath locator Practical Examples
Exception in thread “main” java.net.BindException: Selenium is already running on port 4444.
Have you ever got the following error ? 18:00:45.430 INFO – Launching a standalone server … Exception in thread “main” java.net.BindException: Selenium is already running on port 4444. Or some other service is. at...
Setup remote selenium driver
Do you want your Jenkins plan to run your functional automation tests to run against remote selenium host? Do you need help in setting up remote selenium host? Then this tutorial will teach you...
Recent Comments