How To Automate Job Search And Email The Result Using Selenium
Hello everybody, today we will show you a very interesting but not too long selenium automation example. In this example, we will use selenium Webdriver to search jobs from monster.com automatically and then parse out the job list on the result page. After that send the job list to your favorite email box. All the …
How To Automate Job Search And Email The Result Using Selenium Read More »
Pass Website Basic Authentication Use Selenium WebDriver
Authentication is normally a technology which can make your application more secure. It validate user credentials at the server side first then user can continue to use the application. Basic authentication is used in web applications. It use a browser window to collect user credentials. This can make your website more secure. And block unauthorized users …
Pass Website Basic Authentication Use Selenium WebDriver Read More »
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 »