To make students familiar with the existing testing tools and enable them to use these tools.
Experiment 1: Environment setup for Selenium IDE. Installation of Selenium IDE plugin with Chrome or Firefox.
Experiment 2: Record and run following test script, using Selenium IDE for following scenario
2.1 Open http://www.google.co.in
2.2 Search for IIS University
2.3 Assert that search result page launched
2.4 Click on IIS University link
2.5 Assert that IIS University webpage launched
Experiment 3: Record and run following test script, using Selenium IDE for following scenario
3.1 Open http://automationpractice.com/index.php
3.2 Search for item 'Dresses'
3.3 Assert valid search result page returned with valid items.
3.4 Click on item 'Printed Chiffon Dress'
3.5 Assert Product Details page for 'Printed Chiffon Dress' launched
3.6 Assert Product price is $16.40
Experiment 4: Record and run following test script, using Selenium IDE for following scenario
4.1 Open http://automationpractice.com/index.php
4.2 Search for item 'Dresses'
4.3 Click on item 'Printed Chiffon Dress'
4.4 Add qty 4 of this item to cart
4.5 Proceed to Checkout
4.6 Assert Total items in cart are 4
4.7 Assert Shipping charges are $2.00
Experiment 5: Environment setup for webdriver with Java using Eclipse.
Reference - https://www.guru99.com/installing-selenium-webdriver.html
Experiment 6: Write a webdriver script to launch IIS University Website and after a wait of 10 seconds, close the browser. ( Ref - https://www.toolsqa.com/selenium-webdriver/first-test-case/)