Selenium : How To Avoid Page Loading on Test Execution

If you site Is large then full page can take more time to get loaded completely. In such sites, Single action (like click on link on home page) can take more time as page takes more time to get fully loaded because WebDriver will wait for page get loaded successfully. Can we avoid or neglect … Read more

Selenium : How To Capture JS Errors In Google Chrome

Today most of the applications are using Java Scripts for client side processing like client side validations, etc. So It Is very Important to that If any error related to Javascript Is not present any page of application which can disturb application functionality or user experience In any browser. Doing this task will taking lots … Read more

Launch Selenium Grid Hub And Nodes Using “JSON” Config File

What is JSON? “JavaScript Object Notation” is full form of JSON and it is best way to store information in an organized, easy-to-access and easy to read and understand manner. Here we can use it to store selenium grid config parameters. What is usage of JSON in selenium grid? Well.. Answer is :  When we … Read more

Running Multiple Nodes Of Selenium Grid On Same Machine To Run WebDriver Test

Earlier we learnt, How to start single node on one machine as described in THIS POST. Now our next question is “can we run multiple selenium grid nodes on same machine?”. Answer is yes. Selenium grid allows us to run multiple nodes on same machine. In general, It is not required to run multiple nodes … Read more