April 2017 – Page 2 – Make Selenium Easy

Hello Folks, In my last post, I explained about some useful methods of WebDriver. I got some comments to explain why do we write syntax as below:

driver.manage().window().maximize(); // To maxmize driver.navigate().to(“some url”); // To open url driver.manage().timeouts().implicitlyWait(30, TimeUnit.SECONDS);// To set implicit time

driver.manage().window().maximize(); // To maxmize driver.navigate().to(“some url”); // To open url driver.manage().timeouts().implicitlyWait(30, TimeUnit.SECONDS);// To set implicit time

Actually it’s JAVA concept. It is called as method chaining. We will learn about this now. Some basic Concepts of JAVA: 1. There can be two types […]

Hello Folks, I am here again with new topics. In this post, we will learn all basic methods of WebDriver and its usage. The main purpose of this post is to make you familiar of methods of WebDriver. We will see in details as well in upcoming posts. 1. How to open a URL in browser? […]

Hello Folks, Selenium automates browser and to achieve this, Selenium people have provided many classes and interfaces. During learning selenium, many times we will use up-casting and down-casting concepts of JAVA. Many people know how to perform some operations like opening any desired browser through single method, running java script etc but they are not […]