![]() |
Course | Start Date | Days | Timing |
---|---|---|---|
Python | 11-MARCH-20 | M-F | 12.00 PM-02.00 PM |
Python | 14-MARCH-20 | S-S | 04.00 PM-06.00 PM |
Python | 26-MARCH-20 | M-F | 10.00 aM-12.00 PM |
Software Testing | 08-MARCH-20 | S-S | 11.00 AM-12.00 PM |
Software Testing | 16-MARCH-20 | M-F | 12.00 PM-02.00 PM |
Software Testing | 21-MARCH-20 | S-S | 10.00 AM-12.00 PM |
Selenium | 07-MARCH-20 | S-S | 10.00 AM-12.00 PM |
Selenium | 22-MARCH-20 | S-S | 12.00 PM-02.00 AM |
QTP | 15-MARCH-20 | S-S | 12.00 AM-02.00 PM |
JMeter | 22-MARCH-20 | S-S | 08.00 PM-10.00 PM |
MVC | 05-MARCH-20 | M-F | 08.00 AM-10.00 AM |
MVC | 21-MARCH-20 | S-S | 04.00 PM-06.00 PM |
.Net | 05-MARCH-20 | M-F | 06.00 AM-08.00 PM |
.Net | 14-MARCH-20 | S-S | 04.00 AM-06.00 PM |
.Net | 23-MARCH-20 | M-F | 12.00 PM-02.00 PM |
.Net | 07-MARCH-20 | S-S | 02.00 PM-04.00 PM |
.Net | 16-MARCH-20 | M-F | 08.00 AM-10.00 PM |
.Net | 16-MARCH-20 | M-F | 10.00 AM-12.00 PM |
Java | 03-MARCH-20 | M-F | 08.00 PM-10.00 PM |
Java | 08-MARCH-20 | S-S | 06.00 PM-08.00 PM |
Java | 23-MARCH-20 | M-F | 10.00 PM-12.00 PM |
Advanced Java | 07-MARCH-20 | S-S | 06.00 AM-08.00 AM |
Advanced Java | 16-MARCH-20 | M-F | 12.00 PM-02.00 PM |
Advanced Java | 24-MARCH-20 | M-F | 02.00 AM-04.00 AM |
SQL | 11-MARCH-20 | M-F | 12.00 PM-02.00 PM |
SQL | 14-MARCH-20 | S-S | 02.00 PM-04.00 PM |
SQL | 24-MARCH-20 | M-F | 10.00 AM-12.00 PM |
Android | 07-MARCH-20 | S-S | 10.00 AM-12.00 PM |
Android | 18-MARCH-20 | M-F | 10.00 PM-12.00 PM |
MAT | 21-MARCH-20 | S-S | 02.00 PM-04.00 PM |
Selenium is a market leader tool in automation testing. Students are trained throughly in testing web application under the guidance of professional trainer.
Selenium IDE is a Firefox add-on that is used for recording, creating, and enhancing scripts. It is used to record your interactions with the browser and play them back. IDE stands for integrated development environment.
Selenium IDE records scripts in a special scripting language called Selenese. This language makes it easier for the tester to provide commands to the browser, such as automating the browser to select an option or to click a link. There are also commands for retrieving data from pages. The commands can be moved around quickly and there is auto completion support for editing them. Scripts in Selenese may also be recorded automatically.
Selenium IDE is popularly used for creating bug reproduction scripts and exploratory testing scripts. The best thing about Selenium IDE is that Selenese is easy to understand and anyone with a basic knowledge of web application testing can Learn Selenium IDE in a few days.
Contents |
---|
1. Need of Test Automation
|
2. Introduction to Selenium
|
3. First Record and Play of Scenario in Selenium IDE
|
Contents |
---|
|
4. Debug Test Cases |
5. Parameterization |
6. Regular Expression |
7. Iteration Technique |
8. Data Passing (Integration Approach) |
9. Selenium IDE test runner |
10. How to use Locators in Selenium IDE |
11. How to enhance a script using Selenium IDE |
12. Dragging and Dropping elements |
The Selenium WebDriver drives a browser natively as a user would. It uses the Selenium Server and is a major advancement in browser automation technology. The Selenium WebDriver has rendered the Selenium Remote Control obsolete, and is commonly referred to as Selenium 2.0.
Selenium 2.0 does not require a special server and can start and control a browser directly. If the tests are being conducted on remote systems, the Selenium grid can be used. Selenium 2.0 is supported by C#, Ruby, Python, and Java.
Contents |
---|
Module 1: WebDriver |
1. Selenium WebDriver Introduction |
2. WebDriver Vs Remote Control Vs Grid |
3. Download and Configure WebDriver with Eclipse |
4. First Test Case
|
5. UI elements Locator Methods |
6. Identifying WebElement using id, name, className, link text, class, xpath, css |
7. Handling various WebElement using WebDriver |
8. Handling Mouse movements and keyboard Events |
9. Broken HyperLink and Image Link Testing. |
10. Handling various Form elements |
11. HeadLess Testing using HTML Unit. |
12. Implicit wait & Explicit waits |
13. Explicit waits using custom expected conditions |
Contents |
---|
14. Exception Handling |
15. Exporting pre-recorded test scenario in IDE to WebDriver, and executing it. |
Module 2: Testing Framework and Tools |
1. Introduction of Testing Framework |
2. Types of frameworks |
3. TestNG introduction and Configuration with eclipse |
4. TestNG Annotations |
5. Creating Test Suite with TestNG |
6. Verifications and Assertions |
6. Parameterization |
7. Detailed usage on various Annotations |
Module 3: Develop Framework |
1. Developing Framework for Web Application using WebDriver/TestNG |
2. Use external Data for Testing (Excel sheet file) |
3. Reading and understanding reports |
4. Introduction to browser specific drivers |
Selenium IDE is a Firefox add-on that is used for recording, creating, and enhancing scripts. It is used to record your interactions with the browser and play them back. IDE stands for integrated development environment.
Selenium IDE records scripts in a special scripting language called Selenese. This language makes it easier for the tester to provide commands to the browser, such as automating the browser to select an option or to click a link. There are also commands for retrieving data from pages. The commands can be moved around quickly and there is auto completion support for editing them. Scripts in Selenese may also be recorded automatically.
Selenium IDE is popularly used for creating bug reproduction scripts and exploratory testing scripts. The best thing about Selenium IDE is that Selenese is easy to understand and anyone with a basic knowledge of web application testing can Learn Selenium IDE in a few days.
Contents |
---|
1. Need of Test Automation
|
2. Introduction to Selenium
|
3. First Record and Play of Scenario in Selenium IDE
|
4. Debug Test Cases |
5. Parameterization |
6. Regular Expression |
7. Iteration Technique |
8. Data Passing (Integration Approach) |
9. Selenium IDE test runner |
10. How to use Locators in Selenium IDE |
11. How to enhance a script using Selenium IDE |
12. Dragging and Dropping elements |
The Selenium WebDriver drives a browser natively as a user would. It uses the Selenium Server and is a major advancement in browser automation technology. The Selenium WebDriver has rendered the Selenium Remote Control obsolete, and is commonly referred to as Selenium 2.0.
Selenium 2.0 does not require a special server and can start and control a browser directly. If the tests are being conducted on remote systems, the Selenium grid can be used. Selenium 2.0 is supported by C#, Ruby, Python, and Java.
Contents |
---|
Module 1: WebDriver |
1. Selenium WebDriver Introduction |
2. WebDriver Vs Remote Control Vs Grid |
3. Download and Configure WebDriver with Eclipse |
4. First Test Case
|
5. UI elements Locator Methods |
6. Identifying WebElement using id, name, className, link text, class, xpath, css |
7. Handling various WebElement using WebDriver |
8. Handling Mouse movements and keyboard Events |
9. Broken HyperLink and Image Link Testing. |
10. Handling various Form elements |
11. HeadLess Testing using HTML Unit. |
12. Implicit wait & Explicit waits |
13. Explicit waits using custom expected conditions |
14. Exception Handling |
15. Exporting pre-recorded test scenario in IDE to WebDriver, and executing it. |
Module 2: Testing Framework and Tools |
1. Introduction of Testing Framework |
2. Types of frameworks |
3. TestNG introduction and Configuration with eclipse |
4. TestNG Annotations |
5. Creating Test Suite with TestNG |
6. Verifications and Assertions |
6. Parameterization |
7. Detailed usage on various Annotations |
Module 3: Develop Framework |
1. Developing Framework for Web Application using WebDriver/TestNG |
2. Use external Data for Testing (Excel sheet file) |
3. Reading and understanding reports |
4. Introduction to browser specific drivers |
Android App Developement Course
| | | | | | | | |