Author: Ramanean

Closing a Browser Window using different methods

Generally we use methods like driver.quit() or driver.close() to close the browser window.But sometimes it’s better to use other methods like actions which are available //Using actions instead of driver.quit Actions action = new...

Reducing execution speed in Selenium

To Reduce execution speed in Selenium Web Driver all you have to do is add an implicit wait to the statement before it In Java driver.manage().timeouts().implicitlyWait(10, TimeUnit.SECONDS);   In C# // 15 seconds implicit...

Installing Python on Windows

To install Python on Windows all you have to do is just download the latest version of Python from the site below https://www.python.org/downloads/ If you want to install it on Linux ,Download the package...

Help Menu in Selenium IDE

  Documentation : Clicking on it will lead to Documentation available on Selenium’s Website UI-Element Documentation : This will display documentation for UI & Elements in Selenium’s Website(How to detect and so on) Report Issue...

Options Menu in Selenium IDE

Here is how the Options Menu looks like Options – This will open a new popup window Format – This is all about changing the Formats from HTML to Java you can read more...

Actions Menu in Selenium IDE

Actions Menu in Selenium IDE will be displayed as shown below   Record :  This performs same function as the record button  and it enables users to record the action Play Entire Test Suite/Play...