Webdriver Tutorial
Change Firefox Profile Using WebDriver
A Firefox profile is just a particular folder where you save all Firefox-related settings data in. These data include such as your saved password, installed plugins, favorite homepage, etc. The profile folder is separate from the Firefox software program’s folder. So when you crash or uninstall the program, all your profile’s setting information can still …
How To Find Web Element Using Web Browser Inspector
All the popular browsers provide an Html page web element inspector, you can easily check out the webpage structure use those built-in tools. Chrome, Firefox, Safari, Microsoft Edge all has it’s own built-in inspector. This article will tell you how to use all those web browser’s inspector and how to get an Html web element …
How To Find Web Element Using Web Browser Inspector Read More »
How To Scroll Web Page In Selenium Webdriver Testing Script Using Java
If you want to implement selenium scroll to top or selenium scroll to element scroll web page effect in your selenium testing script using java, you can use the org.openqa.selenium.JavascriptExecutor class which is provided by the Selenium WebDriver. You can run any JavaScript code use JavascriptExecutor object’s executeScript method. In this article, we will show …
How To Scroll Web Page In Selenium Webdriver Testing Script Using Java Read More »
How To Select The Effective XPath For Web Element In Webdriver
It is very easy to find a web element’s XPath with Google Chrome, Firefox, Safari, Internet Explorer, Microsoft Edge inspector. And it is very important to get the best and correct XPath value. But how to do that? In this article, we will tell you how to get XPath from webelement in the correct way.