Pages having selenium tag
This page is about Testing Automation of jQuery jeditable example. By lerning this example, you can understand how to handle elements automatically and dynamically generated by jQuery with JUnit and Selenium.
In order to understand what test, please take a look at jQuery jeditable before reading this page.
- About test cases
- Location of the source code
- Testing ajax dialog
- Testing text input
- Testing select input
- Testing Ajax select input
About test cases
This text case check jeditable's txt input and select input.
Read more
This page is about Testing Automation of jQuery Dialog example. By learning this content, you can test jQuery dialog using ajax by testing automation using JUnit and selenium.
In order to understand what test, please take a look at jQuery Dialog before reading this page.
- About test cases
- Location of the source code
- Initialize WebDriver of the Selenium
- Testing ajax dialog
About test cases
This test case is to check the Ajax dialog can communicate correctly with the parent html's form.
Read more
This page is about Testing Automation of jQuery Autocomplete example. By learning this content, you can test jQuery autocomplete using ajax by testing automation using JUnit and selenium.
In order to understand what test, please take a look at jQuery Autocomplete before reading this page.
- About test cases
- Location of the source code
- Initialize WebDriver of the Selenium
- Testing jquery autocomplete
About test cases
This test case is to do testing about jQuery autocomplete. The candidate is selected in the server side program, and jQuery Autocomplete part checks the candidates and shows in the autocomplete pane. This test checks the candidates.
Read more
This page is about testing automation for the jqTree widget example. By learning this content, you can handle the jqTree widget with the Selenium and JUnit code.
In order to understand what test, please take a look at jQuery jqTree plugin Control before reading this page.
- About test cases
- Location of the source code
- Testing to open the tree node
- Testing to move the node after other node
- Testing to move the node before other node
- Testing to move the node inside other node
About test cases
This testing automation example has test cases below.
Read more
This page is about Testing Automation of FullCalendar jQuery plugin example.The Fullcalendar uses very rich ui. Therefore by learning this content, you can understand the technique to handle such an application with the Selenium and Junit.

In order to understand what test, please take a look at FullCalendar jQuery plugin before reading this page.
Read more
This page is about Testing Automation of Forward, redirect and download. This example checks the forward and redirect is done correctly, and download is done correctly.
- About test cases
- Location of the source code
- Initialize WebDriver of the Selenium
- Forward Testing
- Redirect Testing
- Download Testing
In order to understand what test, please take a look at Forward, redirect and download before reading this page.
About test cases
This testing automation example tests below.
Read more
This page is about Testing Automation of Datatable jQuery plugin example.The Datatable uses very rich ui with table tag of the HTML. Therefore by learning this content, you can understand the technique to handle such an application with the Selenium and Junit.
In order to understand what test, please take a look at Datatable jQuery plugin before reading this page.
- About test cases
- Location of the source code
- Initialize WebDriver of the Selenium and Database
- Paging test
- Full text search test
About test cases
In these test cases, we do following tests.
Read more
This page shows you the technical topics on writing Testing Automation code using the Selenium and JUnit. These techniques are often used in the example project and tutorial. Please refer this page from the link on reading example's explanation.
- Connect to the web browser
- Using Firefox web driver
- Using Chrome web driver
- Using Selenuim
- Set the select input's value
- Take a screenshot
- Download a file
- Database setup Automation
- Backup current data
- Restore data from backup data
Connect to the web browser
In order to make WebDriver connecting to the web browser, you have to initialize it. The code to do it is at the java class, which is named "org.alinous.test.common.WebDriverFactory".

Read more
This page is about Testing Automation of Backup and restore database example. Backing up and restoring data is often used in Testing Automation. It is because preparing the state of the database's data is required for the each test case when you test web based application.
In order to understand what test, please take a look at Backup and restore database before reading this page.
- About test cases
- Location of the source code
- Initialize WebDriver of the Selenium
- Backup database records
- Restore from backuped file
About test cases
This testing automation example tests below.
backup
Read more
The selenium is web browser automation tool, which is accessible from JUnit code. In order to use WebDriver tools which works on Java platform, you have to setup the web browser.
- Setup Firefox web browser
- Setup Chrome web browser
- Download Chromedriver
- Launch ChromeDriver
Setup Firefox web browser
In order to use Firefox as web browser to automate JUnit testing, you have to install Firefox addon. Goto the url below via Firefox web browser.
https://addons.mozilla.org/en-US/firefox/addon/selenium-expert-selenium-ide/
Read more