Do you know we can also Click in Selenium webdriver using JavaScript using different approaches. I have covered previously as well like How to perform click operation in Selenium Webdriver but now we are going to talk about something new I mean how to click in Selenium webdriver using JavaScript for an element which is disabled. While working with disabled web element you … [Read more...] about How to Click in Selenium webdriver using JavaScript
Basic Selenium
How to handle alert in Selenium Webdriver
In some application, while submitting a form or for confirmation a window comes that window known as Alert.Today we will talk about how we can handle alert in Selenium Webdriver using Alert Interface and using different methods. Web-Based alert and Java Script alerts are same so do not get confused. Until you do not handle alert window you cannot perform any … [Read more...] about How to handle alert in Selenium Webdriver
Solution for InvalidElementStateException in Selenium Webdriver
Recently I was working with some of the scenarios and I got InvalidElementStateException in Selenium Webdriver which was stopping me from performing any operation. If you have worked with Selenium then I must say you also have faced InvalidElementStateException in Selenium Webdriver right? If not then I will show you how you can get this exception and what will be the … [Read more...] about Solution for InvalidElementStateException in Selenium Webdriver
Start Firefox browser on MAC using Selenium webdriver
To start Firefox browser on MAC using Selenium webdriver we have to use gecko driver which will interact with Firefox browser.In the previous post, we have already discussed how to work with Chrome on MAC using Selenium. In Selenium 2 we have not used any driver for Firefox but in Selenium 3 for every browser, we have to use third party driver which will perform our … [Read more...] about Start Firefox browser on MAC using Selenium webdriver
Execute Selenium test on chrome browser on MAC using Selenium
To start any third party browser (Chrome, Opera etc.) Chrome browser on MAC using Selenium we have to use some drivers which will interact with the browsers. In windows, we have already seen working with IE, Chrome, Firefox and mobile browsers as well. In windows, it's quite easy to download and specify the path in the program but in MAC we have to keep all the driver in … [Read more...] about Execute Selenium test on chrome browser on MAC using Selenium