Selenium

Python Automation Scripts Examples Use Django And Selenium

Django is the most popular web framework in the python world. You can use it to create a website quickly and simply. Selenium is the most popular website automation testing framework, it can be used to implement website automation function testing in source code with coding language python, java, etc. This example will tell you …

Python Automation Scripts Examples Use Django And Selenium Read More »

How To Use Java Robot To Upload File In Selenium Webdriver

Uploading files is a common task in web-based applications. It is not easy to implement in selenium WebDriver automation, because the upload file component will popup a select file dialog that can not be handled by the selenium WebDriver. But java.awt.Robot provide a method to interact with OS native window dialog, this article will show …

How To Use Java Robot To Upload File In Selenium Webdriver Read More »

Selenium Keyword Driven And Hybrid Framework

There are three kinds of test Frameworks in Selenium testing. They are Keyword Driven Framework, Data Driven Framework, and Hybrid Framework. With these frameworks, we can separate java code and test data in the test program. So your java code is more readable and reusable, the automation script is more portable, and script maintenance cost …

Selenium Keyword Driven And Hybrid Framework Read More »

Run Selenium Test Case Use TestNG

TestNG is an automation test framework. It has a lot of useful features such as graphic execution result reports, annotation support. Selenium webdriver is popular in web-based application automation, but it can not generate reports. So most selenium testers like to use TestNG and Selenium webdriver together to build their automation framework.

Index