Docker Overview
Docker is the most popular and open-source platform which can install and execute distributed applications for developers, testers, and system administrators. You can think of it as a lightweight container. It includes all the necessary libraries that your application needs to run. It is something like VM(Virtual Machine), but it is lightweight. It does not …
Selenium WebDriver – Handle Keyboard And Mouse Events
Keyboard action such as key press is a must have action in some automation test cases. And sometimes you even need to press different keys in your selenium webdriver automation test scripts to make a menu popup. Or you need to simulate click Enter key to submit a form. And the mouse events such as …
Selenium WebDriver – Handle Keyboard And Mouse Events Read More »
HTTP Overview
There are so many clients and servers that exist on the world wide web. Today they are all connected together in a network which is called the WWW network. They are connected with wires or wireless devices such as the WIFI route. When you use your client such as iPhone to browse a page on …
Selenium WebDriver – How To Perform Right Click
In some web pages, function menus is not directly shown on the page. Sometimes you need to right click a button or something else to make the menu list show up, then you can click the menu item in the popup list. Test this kind of function is easy in manual test, but how to …
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 »