Tagged: Selenium

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...