ST:(Lab2)Selenium 实验

一、        实验内容

  1. 安装SeleniumIDE插件
  2. 学会使用SeleniumIDE录制脚本和导出脚本
  3. 访问http://www.ncfxy.com使用学号登录系统(账户名为学号,密码为学号后6位),进入系统后可以看到该用户的邮箱。
  4. 编写Selenium Java WebDriver程序,测试info.csv表格中的学号和邮箱的对应关系是否正确。
  5. 将测试代码提交到github上。

二、        实验目的

  1. 了解并掌握SeleniumIDE的使用,利用SeleniumIDE进行网页的自动化测试。
  2. 利用maven来自动构建测试项目。
  3. 学会编写Selenium Java WebDriver程序,然后对数据进行测试。

三、        实验过程

  1. 安装SeleniumIDE插件

首先下载火狐浏览器,并且在工具栏中的Web开发者中下载并安装SeleniumIDE插件。

安装好插件后,浏览器的工具栏会多出一个工具,如下图所示:

  1. 学会使用SeleniumIDE录制脚本和导出脚本

1)      录制脚本:

a)      点击火狐浏览器工具栏中的Selenium IDE,点击右侧的红色按钮开始进行录制脚本。(默认在打开Selenium IDE后脚本就已经开始录制了,所以开始时一般不用点击红色按钮)

b)      在浏览器中输入http://www.ncfxy.com,访问该网址。

c)      在网页中输入正确的学号和密码信息,并且点击提交。

d)      之后点击,右侧的红色按钮停止录制。过程如下图所示:

2)      导出脚本:

a)      在SeleniumIDE的弹框中,点击 文件—>Export test case as….—> java /JUnit4/WebDriver进行.java文件的导出。如下图所示:

  1. 编写Selenium Java WebDriver程序,测试info.csv表格中的学号和邮箱的对应关系是否正确。

1)      在eclipse中新建一个Maven Project,如下图所示:

2)      在src下的test中建立测试类WebTest,并且将导出的测试脚本用记事本打开,粘贴到这个测试类中,并相应地修改包名和类名。

3)      在测试项目下引入如下几种.jar文件:

4)      在导出的测试脚本中进行相应的修改:

传入两个参数分别代表id和email,然后才@Test下循环读入info.csv文件中的每一行,读出到id和email中,然后在循环中单独测试对于每个id,在输入密码正确的情况下,进行测试info.csv表格中的学号和邮箱的对应关系是否正确。测试代码如下:

package com.example.tests;

import java.nio.charset.Charset;

import java.util.regex.Pattern;

import java.util.concurrent.TimeUnit;

import org.junit.*;

import static org.junit.Assert.*;

import static org.hamcrest.CoreMatchers.*;

import org.openqa.selenium.*;

import org.openqa.selenium.firefox.FirefoxDriver;

import org.openqa.selenium.support.ui.Select;

import com.csvreader.CsvReader;

public class WebTest {

  private WebDriver driver;

  private String baseUrl;

  private boolean acceptNextAlert = true;

  private StringBuffer verificationErrors = new StringBuffer();

  private String id = null;

  private String pwd = null;

  private String email = null;

  @Before

  public void setUp() throws Exception {

    driver = new FirefoxDriver();

    baseUrl = "http://www.ncfxy.com/";

    driver.manage().timeouts().implicitlyWait(30, TimeUnit.SECONDS);

  }

  @Test

  public void testExp2() throws Exception {

       CsvReader cr =  new CsvReader("C:/Users/Administrator/Desktop/软件测试/第二次上机/info.csv", ‘,‘,Charset.forName("GBK"));

    while(cr.readRecord()){

         id = cr.get(0);

         email = cr.get(1);

         pwd = id.substring(4, 10);

         driver.get(baseUrl);

        driver.findElement(By.id("name")).clear();

        driver.findElement(By.id("name")).sendKeys(id);

        driver.findElement(By.id("pwd")).clear();

        driver.findElement(By.id("pwd")).sendKeys(pwd);

        new Select(driver.findElement(By.id("gender"))).selectByVisibleText("女");

        driver.findElement(By.id("submit")).click();

        String number = driver.findElement(By.xpath("//tbody[@id = ‘table-main‘]/tr[2]/td[2]")).getText();

        String email1 = driver.findElement(By.xpath("//tbody[@id = ‘table-main‘]/tr[1]/td[2]")).getText();

        if(id.equals(number)){

           assertEquals(email,email1);

        }

    }

  }

  @After

  public void tearDown() throws Exception {

    driver.quit();

    String verificationErrorString = verificationErrors.toString();

    if (!"".equals(verificationErrorString)) {

      fail(verificationErrorString);

    }

  }

  private boolean isElementPresent(By by) {

    try {

      driver.findElement(by);

      return true;

    } catch (NoSuchElementException e) {

      return false;

    }

  }

  private boolean isAlertPresent() {

    try {

      driver.switchTo().alert();

      return true;

    } catch (NoAlertPresentException e) {

      return false;

    }

  }

  private String closeAlertAndGetItsText() {

    try {

      Alert alert = driver.switchTo().alert();

      String alertText = alert.getText();

      if (acceptNextAlert) {

        alert.accept();

      } else {

        alert.dismiss();

      }

      return alertText;

    } finally {

      acceptNextAlert = true;

    }

  }

}

四、        实验结果

通过使用SeleniumIDEMaven,以及编写Selenium Java WebDriver程序,成功的对网页进行了自动化的测试。

时间: 2024-10-21 23:43:33

ST:(Lab2)Selenium 实验的相关文章

Software Testing Lab2 (软件测试实验二) —— Selenium安装及入门

Download and install Firefox browser If you are the user of WINDOWS, there is a link available for you. Download and install selenium&firebug There is the way that how I finish this step. Open Firefox, click the buttom like picture. Then, search sele

Lab2——Selenium

实验环境: Chrome 65.0.3325.181(64 位),ChromeDriver 2.37 ,poi-3.17,selenium-server-standalone-2.53.1,selenium-java-2.53.1 1.安装SeleniumIDE插件 谷歌插件搜索Selenium,添加插件如下 2.学会使用SeleniumIDE录制脚本和导出脚本 3.访问https://psych.liebes.top/st使用学号登录系统(账户名为学号,密码为学号后6位),进入系统后可以看到该

软件测试Lab2 Selenium及自动化测试

安装SeleniumIDE插件 打开Fire Fox浏览器 点击附加组件 之后搜索Selenium IDE 安装 安装,即可完成Selenium的安装 录制导出脚本 打开SeleniumIDE, 输入网页之后,将信息填至相应的位置,单击确定. 我们发现已经录制完成,导出时文件->export test case as -> Java/junit4 webdriver即可得到相应的java文件 编写测试代码 import java.io.File; import java.nio.charset

#ST# Lab2 for ST

1.安装SeleniumIDE插件 SeleniumIDE是FireFox的一个插件,它支持脚本的录制和导出等.安装时,我们可以直接搜索SeleniumIDE,进入其官网,在火狐浏览器中安装该插件,安装成功后,会在浏览器右上角出现这样的图标. 2.学会使用SeleniumIDE录制脚本和导出脚本 点开图标,下图为每个区域所代表的用途. 当右上角的红点是空心的时候表示正在录制,而且一般情况下默认打开SeleniumIDE直接录制,我们可以点击红点暂停录制.此时打开浏览器,进行操作,进到需要的网址,

ST:Lab1实验报告(测试判断三角形边长)

Lab 1 实验报告 一.   实验任务 下载Junit(4.12), Hamcrest(1.3),并在Eclipse上添加这来那个jar包 在Eclipse上安装Eclemma,用来显示测试的覆盖率. 写一个java程序,来判断三角形的形状,并且Junit来对这个程序进行测试. a)       判断三角形问题的描述: 判断三角形的函数传入三个形参int a, int b, int c 来代表三角形的三个边.并且计算并判断三角形是等边三角形.等腰三角形以及三边都不等的三角形. 二.   实验过

selenium webdriver 软件测试实验2

这是我的实验2的报告,一直都是完成作业的过程随手写到word中,所以直接贴了word过来,但是图片跟不过来,又不想一张张插入,所以投了百度文库的稿,但是还没有通过呢,等通过了,我就把百度文库的地址贴过来,转到这个链接,就可以图文并茂了. LAB2 selenium IDE 1.     Firebug. 1 (1)安装... 1 (2)基本使用... 1 2.     FirePath. 2 (1)安装... 2 (2)使用... 2 3.     selenium IDE. 3 (1)安装..

python3+selenium入门10-表单切换

当元素在ifarm或farm中时,需要先进入到表单中,然后才能定位元素进行操作.直接对元素定位.会提示元素无法找到. <!DOCTYPE html> <html> <head> </head> <body> <iframe id = 'if' src="https://www.baidu.com" width="800" height='300'> </iframe> </bo

Selenium上机实验

实验步骤: 1.安装SeleniumIDE插件 2.学会使用SeleniumIDE录制脚本和导出脚本 3.访问http://121.193.130.195:8080/使用学号登录系统(账户名为学号,密码为学号后6位),进入系统后可以看到该同学的git地址. 4.编写Selenium Java WebDriver程序,测试inputgit.csv表格中的学号和git地址的对应关系是否正确. 5.将测试代码提交到github上 实验操作步骤: 1.下载Firefox24.0,安装并在工具栏中点击工具

CSAPP 六个重要实验 lab2

CSAPP  &&  lab2 哈哈~ 不愧是"美国进口的六级炸弹"!爽歪歪的"升级打怪" 我把实验材料都上传到下面这个link了,0分下载(良心啊~) http://download.csdn.net/detail/u011368821/7892649 再一个实验指导说明供大家下载: http://download.csdn.net/detail/u011368821/7892677 对于Phase_1的分析: 0000000000400ef0 &