You are on page 1of 59

Practical 1

INTRODUCTION TO SELENIUM

1. History of Selenium
• In 2004 invented by Jason R. Huggins and team.
• Original name is JavaScript Functional Tester [JSFT]
• Open source browser based integration test framework built originally by Thought
works.
• 100% JavaScript and HTML
• Web testing tool
• That supports testing Web 2.0 applications
• Supports for Cross-Browser Testing (ON Multiple Browsers)
• And multiple Operating Systems
• Cross browser – IE 6/7, Firefox .8+, Opera, and Safari 2.0+

2. What is Selenium?
• Acceptance testing tool for web-apps
• Tests run directly in browser
• Selenium can be deployed on Windows, Linux, and Macintosh.
• Implemented entirely using browser technologies -
JavaScript
DHTML
Frames

3. Selenium Components
– Selenium IDE
Created by Shinya Kasatani of Japan
– Selenium RC
Created by Paul Hammant
– Selenium Grid
Developed by Patrick Lightbody

Selenium IDE
• The Selenium-IDE (Integrated Development Environment) is the tool you use
to develop your Selenium test cases.
• It is Firefox plug-in
• Firefox extension which allows record/play testing paradigm
• Automates commands, but asserts must be entered by hand
• Creates the simplest possible Locator
• Based on Selenese
1
Software Testing and Quality Assurance
1. Selenium IDE Demo Installation
Version to be used
(Selenium IDE Version 3.1.1 works with Firefox 56.0 and later)

You need
 Mozilla Firefox
 Active Internet Connection
 If you do not have Mozilla Firefox yet, you can download it
from http://www.mozilla.org/en-US/firefox/new.
STEPS:
1. Launch Mozilla Firefox Browser.
2. Type URL https://www.seleniumhq.org/download/
OR
https://addons.mozilla.org/en-US/firefox/addon/selenium-ide/
3. Selenium IDE Add-ons page will get open then Click on Add to Firefox
button
4. Firefox will show one popup saying do you want to allow Mozilla Firefox to install
Selenium IDE Add-ons or not. Click on Install button.

2
Software Testing and Quality Assurance
5. Firefox will automatically install Selenium IDE software. After the installation is
completed, a pop up window appears asking to re-start the Firefox. Click on the
“Restart Now” button to reflect the Selenium IDE installation. Click on Restart
Now button.
6. On clicking on the Restart Now button, Firefox will restart automatically. In case you
missed the pop-up, simply close the Firefox and launch again.
7. Once the Firefox is booted and started again, we can see selenium IDE under the
tools menu list. Selenium IDE icon will be displayed in the Firefox toolbar.
8. Click on Selenium IDE icon to open Selenium IDE.

3
Software Testing and Quality Assurance
4 test cases for 4 websites
i. https://store.demoqa.com
ii. https://www.google.com
iii. https://www.seleniumhq.org

i. Website:- http://store.demoqa.com

Step 1:

Step 2:

4
Software Testing and Quality Assurance
Step 3:

Step 4:

5
Software Testing and Quality Assurance
ii. Website: - https://www.google.com

Step 1:

Step 2:

6
Software Testing and Quality Assurance
Step 3:

Step 4:

7
Software Testing and Quality Assurance
iii. Website: - www.seleniumhq.org
Step 1:

Step 2:

8
Software Testing and Quality Assurance
Step 3: -

Step 4: -

9
Software Testing and Quality Assurance
Practical 2
Aim: Conduct a test suite for any two web sites.
i. Test Case 1
Step1: - Open www.google.com

Open Selenium

10
Software Testing and Quality Assurance
Step 2: - Type Energy Efficient in the google search input box.

11
Software Testing and Quality Assurance
Step 3: Assert the title as “Energy Efficient google search”

Step 4:- Save the test case with .html extension

12
Software Testing and Quality Assurance
ii. Test Case 2
Step 1: Open Firefox Web browser

Open Selenium

13
Software Testing and Quality Assurance
Step2: In the address bar type https://www.yahoo.com

Step 3: Click on Search button

14
Software Testing and Quality Assurance
Step 4: Verify the Test result

Step 5: Save the test case with .html extension

15
Software Testing and Quality Assurance
Practical 3
Aim: Install Selenium server and demonstrate it using a script in Java/PHP.
Step 1: Double click on “Eclipse shortcut on Desktop”

Step 2: Now we need to create a workspace folder –> C:Eclipse-


WorkspaceSeleniumTests

16
Software Testing and Quality Assurance
Step 3: Go to Eclipse –> Click File –> New –> Project (from various options need to select
just “project”)

Step 4: In Select Wizard –> Click Java –> “Java Project”

17
Software Testing and Quality Assurance
Step 5: Give the project name

Step 6: Click Finish – Click Yes

18
Software Testing and Quality Assurance
Step 7: Right Click on project name & Click “Java Build Path”

Step 8: Click “Add External JARs” button

19
Software Testing and Quality Assurance
Step 9: Select “Selenium Client Drivers” unzipped in C:Selenium folder (Selenium
Server JAR file should not be added)

Step 10: Referenced libraries –> contains both the Selenium Client driver jar files.

20
Software Testing and Quality Assurance
Step 11: Create a new class file in project by right click on src folder.

Step 12:

21
Software Testing and Quality Assurance
Source Code:
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.firefox.FirefoxDriver; import
org.openqa.selenium.remote.DesiredCapabilities;

public class hello


{
static String driverPath = "D:\\selenium pracs\\geckodriver-v0.21.0-
win32\\GeckoDriver.exe";
public static WebDriver driver;
public static void main(String args[])
{
int a=10,b=20;
System.out.println("Hi. ....... ");
System.out.println(a+b);
System.out.println("Selenium demo. ...........");

System.setProperty("webdriver.gecko.driver",driverPath); DesiredCapabilities
capabilities = DesiredCapabilities.firefox();
capabilities.setCapability("marionette",true);
driver= new FirefoxDriver(capabilities);
driver.get("https://www.facebook.com/");
driver.manage().window().maximize(); driver.quit();

}
}

22
Software Testing and Quality Assurance
Output:

23
Software Testing and Quality Assurance
Practical 4
Aim: Write and test a program to login a specific web page. (Using JUnit)

Step 1: Download JUnit

Step 2: open control panel ->advanced ->environment variable.

24
Software Testing and Quality Assurance
Step 3: Under environment window clicks on "new" button.

Step 4: A "New System Variable" window will open:

25
Software Testing and Quality Assurance
Step 5: Provide variable name as "JUNIT_HOME"and Provide JUnit value as JUnit path where
you have copied JUnit jar files.

Step 6: create another variable with the name CLASSPATH. Variable value: C:/junit

Step 7: JUNIT_HOME to JUnit.jar which is placed in JUnit folder

26
Software Testing and Quality Assurance
Sankalp kadam Roll no. 27

Step 8: Right click on project: Click on "build path" and then Click on "Configure build path"

Step 9: Now click on "Add External JARs" button to add your downloaded
JUnit.jar file with eclipse

27
Software Testing and Quality Assurance
Sankalp kadam Roll no. 27

Step 10: Create a java class named TestJUnit.java and provide a simple assert statement.

28
Sankalp kadam Roll no. 27

Step 11: Create a java class named TestJUnit.java and provide a simple assert statement.

Source Code:
import org.junit.Test;

import static org.junit.Assert.assertEquals;


public class TestJunit {
@Test
public void testSetup() {
String str= "I am done with Junit setup";
assertEquals("I am done with Junit setup",str);
}
}

Step 12: Create a Test Runner class to execute above test.

Source Code:

import org.junit.runner.JUnitCore; import


org.junit.runner.Result;
import org.junit.runner.notification.Failure;

public class TestRunner {


public static void main(String[] args) {
Result result = JUnitCore.runClasses(TestJunit.class); for
(Failure failure : result.getFailures()) {
System.out.println(failure.toString());
}
System.out.println("Result=="+result.wasSuccessful());
}
}

Step 13: Right click on TestRunner.java and click on "Run As" and Another window will be open
once you click on "Run As", click on "1 JUnit Test"

29
Sankalp kadam Roll no. 27

Output:

30
Sankalp kadam Roll no. 27

Practical 5
Aim: Write and test a program to update 10 student records into table into Excel file (using
TestNG)
Step 1: Select Help / Software updates / Find and Install &

Step 2:

31
Sankalp kadam Roll no. 27

Step 3: For Eclipse 3.4 and above, enter http://beust.com/eclipse

Step 4: Make sure the check box next to URL is checked and click Next.

32
Sankalp kadam Roll no. 27

Step 5:

Step 6:

33
Sankalp kadam Roll no. 27

Step 7:

Step 8:

34
Sankalp kadam Roll no. 27

Code to update 10 student records into table into Excel file

import jxl.Cell;
import jxl.Sheet;
import jxl.Workbook;
import jxl.read.biff.BiffException;
import org.testng.annotations.BeforeClass;
import org.testng.annotations.Test;
import jxl.*;
import jxl.read.*;
import jxl.write.*;
import java.io.*;

public class updatestudrecords {


@BeforeClass
public void f1()
{}
@Test
public void testImportexport1() throws Exception {
FileInputStream fi = new FileInputStream("D:\\selenium pracs\\myBook1.xls");
Workbook w = Workbook.getWorkbook(fi);
Sheet s = w.getSheet(0);
String a[][] = new String[s.getRows()][s.getColumns()];
FileOutputStream fo = new FileOutputStream("D:\\selenium pracs\\myBook1res.xls");
WritableWorkbook wwb = Workbook.createWorkbook(fo);
WritableSheet ws = wwb.createSheet("result1", 0);
for (int i = 0; i < s.getRows(); i++)
for (int j = 0; j < s.getColumns(); j++)
{
a[i][j] = s.getCell(j, i).getContents();
Label l2 = new Label(j, i, a[i][j]);
ws.addCell(l2);
Label l1 = new Label(6, 0, "Result");
ws.addCell(l1);
}
for (int i = 1; i < s.getRows(); i++) {
for (int j = 2; j < s.getColumns(); j++)
{
a[i][j] = s.getCell(j, i).getContents();
int x=Integer.parseInt(a[i][j]);
if(x > 35)
{
Label l1 = new Label(6, i, "pass");
ws.addCell(l1);
}
else

35
Sankalp kadam Roll no. 27

{
Label l1 = new Label(6, i, "fail");
ws.addCell(l1);
break; } }
}
wwb.write();
wwb.close(); } }

Input in Excel Sheet 1:

Output in Excel sheet 2:

36
Sankalp kadam Roll no. 27

Practical 6
Aim: Write and test a program to select the number of students who have scored more than 60 in
any one subject (or all subjects).
Source Code:
import jxl.*;
import
jxl.read.*;
import
jxl.write.*;
import java.io.*;
import
org.testng.annotations.Test;
public class countstuds {
@Test
public void testImportexport1() throws Exception {
FileInputStream fi = new FileInputStream("D:\\selenium
pracs\\myBook1.xls"); Workbook w = Workbook.getWorkbook(fi);
Sheet s = w.getSheet(0);
String a[][] = new String[s.getRows()][s.getColumns()];
FileOutputStream fo = new FileOutputStream("D:\\selenium
pracs\\countBook1res.xls"); WritableWorkbook wwb =
Workbook.createWorkbook(fo);
WritableSheet ws = wwb.createSheet("result",
0); int c=0;
for (int i = 0; i < s.getRows(); i++)
{ for (int j = 0; j <
s.getColumns(); j++)
{
if(i >= 1)
{ String b= new
String();
b=s.getCell(3,i).getContents(
); int x= Integer.parseInt(b);
if( x < 60)
{ c++;
break; }
}
a[i][j] = s.getCell(j, i).getContents();
Label l2 = new Label(j, i-c,
a[i][j]); ws.addCell(l2);
} }
wwb.write();
wwb.close();
} }

37
Sankalp kadam Roll no. 27

Input in Excel Sheet 1:

Output in Excel sheet 2:

38
Sankalp kadam Roll no. 27

Practical 7
AIM: Write and test a program to provide total number of objects present / available
on the page.
Source Code:

import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver; import
org.openqa.selenium.WebElement;
import org.openqa.selenium.firefox.FirefoxDriver; import
org.openqa.selenium.remote.DesiredCapabilities;

public class nlinks


{
static String driverPath = "D:\\selenium pracs\\geckodriver-v0.21.0-
win32\\GeckoDriver.exe";
public static WebDriver driver;
public static void main(String args[])
{

System.setProperty("webdriver.gecko.driver",driverPath); DesiredCapabilities
capabilities = DesiredCapabilities.firefox();
capabilities.setCapability("marionette",true);
driver= new FirefoxDriver(capabilities);
driver.get("http://toolsqa.wpengine.com/");

java.util.List<WebElement> links =
driver.findElements(By.tagName("a"));
System.out.println("Total links are"+links.size()); for
(int i = 0; i<links.size(); i=i+1)
{
System.out.println("Link "+ i + " Link name "+ links.get(i).getText());
}
}
}

39
Sankalp kadam Roll no. 27

OUTPUT:
Total Links are 229.

40
Sankalp kadam Roll no. 27

Practical 8
AIM: Write and test a program to get the number of items in a list / combo box.

Step1: Start Xampp Server

Step 2: Create test.html in this location C:\xampp\htdocs


<html>

<body>

<select name="menu">

<option value="0" selected>Zero</option>

<option value="1" >One</option>

<option value="2" >Two</option>

<option value="3" >Three</option>

<option value="4" >Four</option>

<option value="5" >Five</option>

<option value="6" >Six</option>

</select>

</body>

</html>

41
Sankalp kadam Roll no. 27

42
Sankalp kadam Roll no. 27

Step 3: Create new project in eclipse

43
Sankalp kadam Roll no. 27

Step 4 : Add selenium WebDriver in jar library

44
Sankalp kadam Roll no. 27

Step 5: Create a java class in ComboBox:

45
Sankalp kadam Roll no. 27

Source Code:-
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.firefox.FirefoxDriver;
import org.openqa.selenium.remote.DesiredCapabilities;

public class ListTest {


static String driverPath = "D:\\selenium pracs\\geckodriver-v0.24.0-
win64\\geckodriver.exe";
public static WebDriver driver;
public static void main(String args[])
{
System.setProperty("webdriver.gecko.driver",driverP
ath); WebDriver driver = new FirefoxDriver();
driver.get("http://localhost:80/test.html");
java.util.List<WebElement> options =
driver.findElements(By.xpath("//select/option"));
System.out.println("\n=========================================
===\n=
Total Numbers of items in combobox are "+options.size()+"
=\n============================================\n");
System.out.println("\nThe name of items are:-\n");
for (int i = 0; i<options.size(); i=i+1)
{
System.out.println("Item "+ i + " Item name "+ options.get(i).getText());
}
}
}

Step 6: Run your program

OUTPUT:

46
Sankalp kadam Roll no. 27

47
Sankalp kadam Roll no. 27

Practical 9
AIM: Write and test a program to count the number of check boxes on the page checked and
unchecked count.
Step 1: Start xampp Server

Step 2: Create ComboTest.html in this location C:\xampp\htdocs


<html>

<body>
<form>

<input type="checkbox">SSC<br/>

<input type="checkbox">HSC<br/>

<input type="checkbox">BSC CS<br/>

<input type="checkbox">BSC IT<br/>

<input type="checkbox">BCOM<br/>

<input type="checkbox">BTECH<br/>

</form>

</body>

</html>

48
Sankalp kadam Roll no. 27

49
Sankalp kadam Roll no. 27

Step 3: Create new project in eclipse

50
Sankalp kadam Roll no. 27

Step 4: Add selenium WebDriver in jar library

51
Sankalp kadam Roll no. 27

Step 5: Create a new class CheckBoxSelected: -

52
Sankalp kadam Roll no. 27

Source Code :
Import org.openqa.selenium.By;
Import org.openqa.selenium.WebDriver;
Import org.openqa.selenium.WebElement;
Import org.openqa.selenium.firefox.FirefoxDriver;
Public class CheckBoxSelected {
static String driverPath = "C:\\Users\\Computer-lab\\Downloads\\geckodriver.exe";
public static WebDriver driver;
public static void main(String args[]){
System.setProperty("webdriver.gecko.driver",driverPath);
WebDriver driver = newFirefoxDriver();
driver.get("http://localhost:83/comboTest.html");
java.util.List<WebElement>options =
driver.findElements(By.xpath("//input[@type='checkbox']"));

for (int i = 0; i<options.size(); i=i+2){


options.get(i).click();
}
int checkedcnt=0,uncheckedcnt=0;
for (int i = 0; i<options.size(); i=i+1){
System.out.println(i + " Checkbox is selected "+
options.get(i).isSelected());
if( options.get(i).isSelected()) {
checkedcnt++;
}else {
uncheckedcnt++;
}
}
System.out.println("\nTotal number of selected checkbox "+ checkedcnt);
System.out.println("\nTotal number of selected checkbox "+ uncheckedcnt);
}
}

53
Sankalp kadam Roll no. 27
Step 4: Run your program

54
Sankalp kadam Roll no. 27

Practical 10
Aim: Load Testing using JMeter, Android Application testing using Appium Tools,
Bugzilla Bug tracking tools.
Step 1: http://jmeter.apache.org/download_jmeter.cgi#binaries

Step 2: Open the JMeter Window by clicking on apache-jmeter-5.0/bin/jmeter.bat

55
Sankalp kadam Roll no. 27

Step 3: Change the name of the Test Plan node to Sample Test in the Name test Box.

Step 4: Right Click on Sample Test > Add > Thread Users > Thread Groups

56
Sankalp kadam Roll no. 27
Step 5: Name the Thread Group as Users.

Step 6: Right Click on User node and Add > Sampler > HTTP request option

57
Sankalp kadam Roll no. 27

Step 7: It will add one empty HTTP Request Sampler under the user node

Step 8: Configure the node elements Name , Server Name or Ip , Protocol , Path.

Step 9: To add listener: Right click on user node > Add > Listener > > View Result Tree Option

58
Sankalp kadam Roll no. 27

Step 10: Run the test Plan and View the Output.

59

You might also like