You are on page 1of 50

Software Testing Lab Record

Submitted in the partial fulfillment of the requirements in the 7th semester of

BACHELOR OF ENGINEERING

IN

INFORMATION SCIENCE AND ENGINEERING


BY

MD Adil Anwar Khan


1NH20IS086

FOR

COURSE NAME : Software Testing & Automation Lab


COURSE CODE : 20ISL76A
Sl. Date Name of Experiment / Model 1 2 3 Total Faculity
no Signature
1 15/9/23 Triangle problem

2 22/9/23 commission problem

3 22/9/23 Next Date function

4 6/10/23 UI elements using JavaScript

5 6/10/23 Matrix multiplication

6 13/10/23 Test script in Selenium IDE

7 27/10/23 Selenium IDE test suite

8 27/10/23 Selenium server installation using


JAVA
9 3/11/23 Automated testing using selenium

10 3/11/23 Selenium to test a program that


updates 10 student records
11 10/11/23 Number of objects present on a web
page using selenium.
12 17/11/23 Mobile app testing using APPIUM

Average

1. Conduction of Experiment/ Writing programme ( Marks)


2. Specimen Calculation / Execution ( Marks)
3. Result & Record Writing ( Marks)
Program 1: Design and develop a program in a language of your choice to solve the triangle
problem defined as follows. Accept 3 integers which are supposed to be 3 sides of a triangle
and determine if the 3 values represent an equilateral triangle,isosceles,scalene or they do
not form a triangle at all. Assume that the upper limit for the size of any side is 10. Derive
testcases for your program based on Decision Table approach, execute the testcases and
discuss the test results.
Program:
check=True
while check:
a,b,c=map(int,input().split())
c1=((a>=1)) and ((a<=10))
c2=((b>=1)) and ((b<=10))
c3=((c>=1)) and ((c<=10))
if(not c1):
print("a is not in range")
if(not c2):
print("b is not in range")
if(not c3):
print("c is not in range")
check=(not c1) or (not c2) or (not c3)
if((a<(b+c)) and (b<(a+c)) and (c<(a+b))):
if((a==b) and (b==c)):
print("Eqilateral triangle")
elif((a!=b) and (b!=c) and (c!=a)):
print("Scalene triangle")
else:
print("Isosceles triangle")
else:
print("Triangle cannot be formed")
Output:

Program 2: Design, Develop, code and run the program in any suitable language to solve
the commission problem. Analyze it from the perspective of Boundary Value Testing,
derive different testcases, execute these testcases and discuss the test results.
Program:
#include<stdio.h>
int main()
{
int c1,c2,c3,temp;
int locks,stocks,barrels,totallocks,totalstocks,totalbarrels;
float lockprice,stockprice,barrelprice,locksales,stocksales,barrelsales,sales,com; lockprice=45.0;
stockprice=30.0;
barrelprice=25.0;
totallocks=0;
totalstocks=0;
totalbarrels=0;
printf("Enterthe number oflocks and to exit press-1\n");
scanf("%d",&locks);
while(locks != -1)
{
c1=(locks<=0 || locks>70);
printf("\nEnterthe number ofstocks and barrels\n");
scanf("%d %d",&stocks,&barrels);
c2=(stocks<=0 || stocks>80);
c3=(barrels<=0 || barrels>90);
if(c1)
printf("\nValue oflocks are not in the range of 1.........................70\n");
else
{
temp=totallocks+locks; if(temp>70)
printf("Newtotallocks=%dnotintherangeof1. ........................70\n",temp);
else
totallocks=temp;
}
printf("Total locks = %d",totallocks); if(c2)
printf("\n Value ofstocks not in the range of 1........................80\n");
else
{
temp=totalstocks+stocks;

if(temp>80)
printf("\nNewtotalstocks =%d not in the range of 1........................... 80",temp);
else
totalstocks=temp;
}
printf("\nTotal stocks = %d",totalstocks); if(c3)
printf("\n Value of barrels not in the range of 1. ....................... 90\n");
else
{
temp=totalbarrels+barrels; if(temp>90)
printf("\nNewtotal barrels=%dnotin the range of 1. .......................... 90\n",temp);
else
totalbarrels=temp;
}
printf("\nTotal barrels=%d", totalbarrels);
printf("\nEnterthe number of locks and to exit press-1\n"); scanf("%d",&locks);
}
printf("\n Total locks = %d",totallocks);
printf("\nTotal stocks = %d",totalstocks);
printf("\n Total barrels = %d",totalbarrels);

locksales=totallocks*lockprice;
stocksales=totalstocks*stockprice;
barrelsales=totalbarrels*barrelprice;
sales=locksales+stocksales+barrelsales;
printf("\nTotal sales = %f",sales); if(sales>1800)
{
com=0.10*1000;
com=com+(0.15*800);
com=com+0.20*(sales-1800);
}
else if(sales>1000)
{
com=0.10*1000;
com=com+0.15*(sales-1000);
}
else
com=0.10*sales;
printf("\nCommission = %f",com);
return 0;
}
Output:
Program 3: Design, Develop, code and run the program in any suitable language to
implement the Next Date function. Analyze it from the perspective of Equivalence Class
Testing, derive different testcases, execute these testcases and discuss the results.
Program:
#include<stdio.h>
int check(int day,int month)
{
if((month==4||month==6||month==9 ||month==11) && day==31) return 1;

else

return 0;
}
int isleap(int year)
{
if((year%4==0 && year%100!=0) || year%400==0) return 1;
else
return 0;
}

int main()
{
int day,month,year,tomm_day,tomm_month,tomm_year; char flag;
do
{
flag='y';
printf("\nenter the today's date in the form of dd mm yyyy\n");
scanf("%d%d%d",&day,&month,&year);
tomm_month=month; tomm_year= year; if(day<1 || day>31)
{
printf("value of day, not in the range 1...31\n"); flag='n';
}
if(month<1 || month>12)
{
printf("value of month, not in the range 1. 12\n");
flag='n';
}
else if(check(day,month))
{
printf("value of day, not in the range day<=30"); flag='n';
}
if(year<=1812 || year>2015)
{
printf("value of year, not in the range 1812. 2015\n");
flag='n';
}
if(month==2)
{
if(isleap(year) && day>29)
{
printf("invalid date input for leap year"); flag='n';
}
else if(!(isleap(year))&& day>28)
{
printf("invalid date input for not a leap year"); flag='n';
}
}

}while(flag=='n');

switch (month)
{
case 1:
case 3:
case 5:
case 7:
case 8:
case 10:if(day<31)
tomm_day=day+1;

else
{
tomm_day=1; tomm_month=month+1;
}
break;
case 4:
case 6:
case 9:
case 11: if(day<30)
tomm_day=day+1;
else
{
tomm_day=1; tomm_month=month+1;
}
break;

case 12: if(day<31)


tomm_day=day+1;
else
{
tomm_day=1; tomm_month=1; if(year==2015)
{
printf("the next day is out of boundary value of year\n"); tomm_year=year+1;
}
else
tomm_year=year+1;
}
break;
case 2:

if(day<28)
tomm_day=day+1;
else if(isleap(year)&& day==28)
tomm_day=day+1; else if(day==28 || day==29)
{
tomm_day=1; tomm_month=3;
}
break;
}
printf("next day is : %d %d %d",tomm_day,tomm_month,tomm_year); return 0;
}
Output:
Program 4: Design Front-end for any web application and derive the testcases as
applicable. Validate the UI elements using JavaScript.
Program:
1.html:
<html>
<head>
<title>Javascript Login Form Validation</title>
<!-- Include CSS File Here -->
<link rel="stylesheet" href="form-style.css"/>
<!-- Include JS File Here -->
<script src="login.js"></script>
</head>
<body>
<div class="container">
<div class="main">
<h2>Javascript Login Form Validation</h2>
<form id="form_id" method="post" name="myform">
<label>User Name :</label>
<input type="text" name="username" id="username"/>
<label>Password :</label>
<input type="password" name="password" id="password"/>
<input type="button" value="Login" id="submit" onclick="validate()"/>
</form>
<span><b class="note">Note : </b>For this demo use following username and password.
<br/><b class="valid">User Name : Form<br/>Password : 123</b></span>
</div>
</div>
</body>
</html>
login.js:
var attempt = 3; // Variable to count number of attempts.
// Below function Executes on click of login button.
function validate() {
var username = document.getElementById("username").value;
var password = document.getElementById("password").value;
if ( username =="Form" && password =="123") {
alert ("Login successfully");
window.location = "success.html"; // Redirecting to other page.
return false;
}
else {
attempt --; // Decrementing by one. I
alert("You have left "+attempt+" attempt;");
// Disabling fields after 3 attempts.
if( attempt == 0){
document.getElementById("username").disabled = true;
document.getElementById("password").disabled = true;
document.getElementById("submit").disabled = true;
return false;
}
}
}
success.html:
<html>
<head>
<title>Javascript Login Form Validation</title>
</head>
<body>
<h2>Successful Login!</h2>
</body>
</html>
Output:
Logged in successfully.
Login failed, so the number of attempts is displayed.
Testcase Table:

Program 5: Write a program for matrix multiplication. Introspect the causes for its failure
and write down the possible reasons. Analyze the positive testcases and negative testcases.

Program:
m=int(input("Enter M1 rows:"))
n=int(input("Enter M1 columns:"))
o=int(input("Enter M2 rows:"))
p=int(input("Enter M2 columns:"))

if(n==o):
A=[]
for i in range(m):
m1=[]
for j in range(n):
k=int(input())
m1.append(k)
A.append(m1)
B=[]
for i in range(o):
m1=[]
for j in range(p):
k=int(input())
m1.append(k)

B.append(m1)
result = [[0, 0, 0, 0],
[0, 0, 0, 0],
[0, 0, 0, 0]]

for i in range(len(A)):
for j in range(len(B[0])):
for k in range(len(B)):
result[i][j] += A[i][k] * B[k][j]
for r in result:
for b in r:
if(b!=0):
print(b,end=" ")
print()
else:
print("Matrix Multipication is not possible")

Output:
Output is attached in the next page.

Program 6: Implement test script in Selenium IDE using recording, playing back /
executing and solving resources / processes. Use Selenium IDE commands, assertions and
actions to directly interact with page elements.
STEPS:
Installing IDE –
Step 1: Open the Firefox browser.
Step 2: Click on the menu in the top right corner.
Step 3: Click on add-ons in the drop down box.
Step 4: Click on “Find more add-ons” and type “Selenium-IDE”.
Step 5: Click on “Add to Firefox”.
Once installed, the selenium IDE icon appears on the top right corner of the browser. Once you
click on it , a welcome message appears.
Recording a test –
Step 1: Provide a name for your project
Step 2: Before recording, specify a valid URL. The recording begins once the browser navigates
to this URL.
Step 3: Clicking on „Start recording‟ will redirect to the specified URL and start recording the
user interactions.
The user is at liberty to stop the recording. All user actions are recorded and converted into a
script.
Save the work –
Step 1: Click the save icon in the top right corner of the IDE.
Step 2: It will prompt for name and a location of where to save the project. The result is a single
file with a side extension.
Playback –
In browser, the tests can be played back in the Selenium automation testing IDE by selecting the
test to play and by clicking on the play button.

Output:
Output screenshot is attached in the next page.
Program 7:
Using Selenium IDE, create a test suite containing minimum 4 test cases (for any two web
sites).
Program 8: Demonstrate selenium server installation using JAVA.

//http://localhost:4444/selenium-server/driver/?cmd=getLogMessages
//java -jar selenium-server-standalone.jar -role hub
//http://localhost:4444/grid/console
//http://192.168.1.103:5555/wd/hub/static/resource/hub.html
cmd prompt 1
cd C:\Latha_Drive\SeleniumJars
java -jar selenium-server-standalone-3.5.3.jar -role hub
cmd prompt 2
cd C:\Latha_Drive\SeleniumJars
java -jar selenium-server-standalone-3.5.3.jar -role node -hub http://localhost:4444External files
to be added:
1. Selenium-server-standalone-3.5.3.jar
The above JAR files have to be added under the Classpath section in Build Path Configuration
function.
Program:
import static org.junit.Assert.*;
import java.util.*;
import java.util.concurrent.TimeUnit;

import org.openqa.selenium.*;
import org.openqa.selenium.chrome.ChromeDriver;
import org.openqa.selenium.support.ui.ExpectedConditions;
import org.openqa.selenium.support.ui.WebDriverWait;

import java.time.Duration;

class server_p {
static WebDriver driver;
public static void main(String[] args) {

server_p c=new server_p();

driver=c.Launch("http://demo.guru99.com/test/newtours/");
driver.manage().timeouts().implicitlyWait(Duration.ofSeconds(10));
System.out.println("waited for 10 sec");

WebElement objTextBox=driver.findElement(By.name("userName"));
objTextBox.sendKeys("userName");
driver.findElement(By.name("password")).sendKeys("password")// enter password
System.out.println("waiting");
objTextBox.submit();
WebDriverWait wait=new WebDriverWait(driver, 10);
System.out.println("waiting over");
wait.until(ExpectedConditions.titleContains("Welcome: Mercury Tours"));
System.out.println("check");

System.out.println(driver.getTitle());
System.out.println("all test case pass");

assertEquals("Welcome: Mercury Tours",driver.getTitle());

driver.manage().timeouts().implicitlyWait(Duration.ofSeconds(10));
c.Close(); }
public server_p()
{
System.setProperty("webdriver.chrome.driver","C:\\Latha_Drive\\SeleniumJars\\Chrome
Driver\\chromedriver.exe");
driver=new ChromeDriver();
driver.manage().window().maximize();
System.out.println("Launching Chrome1");
}
public WebDriver Launch(String url){
driver.get(url);
System.out.println("Opened URL in Chrome:"+url);
return driver;
}
public void Close()
{
driver.quit();
System.out.println("Closed Chrome");
} }
Program 9: Illustrate automated testing using selenium to perform tests on login web page

External files to be added:


1. JAR file obtained from selenium-java-4.1.0 folder and sub-folder lib.
2. Chromedriver.exe file in a folder named driver
The above JAR files have to be added under the Classpath section in Build Path Configuration
function.

Program:
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.chrome.ChromeDriver;
public class GuruWebpageLogin {
public static void main(String[] args) throws InterruptedException {
//System.setProperty("webdriver.gecko.driver","C:\\Latha_Drive\\SeleniumJars\\geckodriver-
v0.30.0-win64\\geckodriver.exe");
System.setProperty("webdriver.chrome.driver"," C:\\Latha_Drive\\SeleniumJars\\geckodriver-
v0.30.0-win64\\driver\\chromedriver.exe");
WebDriver driver=new ChromeDriver();
driver.manage().window().maximize();
System.out.println("Launching Chrome");
//WebDriver driver = new FirefoxDriver();
//driver.get("https://accounts.google.com/signin/v2/identifier?continue=https%3A%2F%2Fmail.
google.com%2Fmail%2F&service=mail&sacu=1&rip=1&flowName=GlifWebSignIn&flowEntr
y=ServiceLogin");
driver.get("http://demo.guru99.com/test/newtours/");

//driver.findElment(By.id("identifierId")).sendKeys(""); // enter username


driver.findElement(By.name("userName")).sendKeys("userName"); // enter username
//driver.findElement(By.id("identifierNext")).click();
Thread.sleep(5000);
// driver.findElement(By.name("password")).sendKeys(""); // enter password
driver.findElement(By.name("password")).sendKeys("password"); // enter password
// driver.findElement(By.id("passwordNext")).click();
Thread.sleep(5000);
WebElement ob = driver.findElement(By.name("submit"));
ob.click();

String title = driver.getTitle();


System.out.println(driver.getTitle());
if(title.equals("Login: Mercury Tours"))
{
System.out.println("LOGIN SUCCESSFUL...");
System.out.println("all test case pass");
}
else
{
System.out.println("LOGIN FAILED");
}
}
}

Output:
Program 10: Use selenium to test a program that updates 10 student records into a table
from Excel file.
Prerequisite :

1) jxl jar file ,Downloaded from https://sourceforge.net/projects/jexc...


2) An excel file with student records present in it.
(In my case "Students.xls").
3) Install TestNG Plugin for eclipse ide from the given Link below.
https://www.techbeamers.com/install-t...
I have already installed it....
Steps :
1) Open eclipse create a new java project - add a class - then add the jar file using Build
path as shown in my previous video.
Dont select any method here...
2) Import all the packages.
import java.io.FileInputStream;
import java.io.FileOutputStream;
import jxl.Sheet;
import jxl.Workbook;
import jxl.write.Label;
import jxl.write.WritableSheet;
import jxl.write.WritableWorkbook;
import org.testng.annotations.*;
3) Write down the code given in the description.
Link to download code : https://drive.google.com/open?id=1F8Q...
Run the program and see the output on the specified location in my case it is Desktop....
Run the program as TestNG suite...
External files to be added:
1. log4j-1.2.14.jar
2. jcommander-1.78.jar
3. jquery-3.5.1.jar
4. testng-7.4.0.jar
The above JAR files have to be added under the Classpath section in Build Path
Configuration function.
The following excel file (.xls format only) has to be created and the path for the file has to be
provided in the program.

Program:
import java.io.FileInputStream;
import java.io.FileOutputStream;
import jxl.Sheet;
import jxl.Workbook;
import jxl.write.Label;
import jxl.write.WritableSheet;
import jxl.write.WritableWorkbook;
import org.testng.annotations.*;
public class excel {
@BeforeClass //@BeforeClass runs once before the entire test.
public void setUp() throws Exception {}
@Test
public void testImportexport1() throws Exception {
FileInputStream fi = new FileInputStream("C:\\Users\\ST AND AUTO
LAB\\excel\\Students.xls");
Workbook w = Workbook.getWorkbook(fi);
Sheet s = w.getSheet(0);
String a[][] = new String[s.getRows()][s.getColumns()];
FileOutputStream fo = new FileOutputStream("C:\\Users \\ST AND AUTO
LAB\\excel\\Result.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
{
Label l1 = new Label(6, i, "fail");
ws.addCell(l1);
break;
}
}
System.out.println("Records sucessfully updated ");
}
wwb.write();
wwb.close();
}
}

Output:
Program 11: Write and test a program to provide total number of objects present on a
web page using selenium.

External files to be added:


a) JAR file obtained from selenium-java-4.1.0 folder and sub-folder lib.
b) Chromedriver.exe file in a folder named driver
The above JAR files have to be added under the Classpath section in Build Path Configuration
function.

Program:
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.chrome.ChromeDriver;
import java.util.List;
public class program_11 {
public static void main(String[] args) {
System.setProperty("webdriver.chrome.driver", "C:\\Users\\driver\\chromedriver.exe");
WebDriver driver=new ChromeDriver();
driver.manage().window( ) .maximize();
System.out.println("Launching Chrome");
//driver.get("http://demo.guru99.com/test/newtours/");
driver.get("https://mail.google.com/mail/");
List< WebElement> mylist=driver.findElements (By.xpath("//a"));
System.out.println("Number of links =" +mylist.size());
}
}

Output:
Program 12: Demonstrate mobile app testing using APPIUM.

Install Appium and Android Studio And AVD manager, Set env variable.

https://github.com/appium/appium-desktop/releases/tag/v1.17.0

Appium-windows-1.17.0
Download Android Studio and SDK tools | Android Developers

https://developer.android.com/studio/

android-studio-2020.3.1.26-windows
Start AVD
\

"deviceName": "Galaxy Nexus",

"VERSION": "4.4.2",

"BROWSER_NAME": "Android",

"platformName": "Android",

"appPackage": "com.android.calculator2",

"appActivity": "com.android.calculator2.Calculator"}
}

You might also like