当前位置: 首页 > 知识库问答 >
问题:

自动化测试-Selenium WebDriver-运行多个测试用例

南宫书
2023-03-14

我的自动化测试有一些问题。我的EclipseIDE中大约有50个测试用例。所有测试用例都在不同的类中。另外,我还有一个基类,它包含@beforeclass和@afterclass。在@beforeclass中,浏览器打开,URL打开,网站URL打开,然后执行登录过程。然后我的测试用例工作。它们都以@Test注释开始。我使用TestNG套件将它们连接起来。基类:我的基类。java类MyBaseClass。java类TestNg:测试用例(类)的我的套件示例:我的示例测试用例(类)

这是我的问题:我想为这些类(测试用例)使用优先级(如@Test(优先级=1))来减少劳动力。但是当我的代码有问题时;我的自动化测试停止了。我想,它会继续除了停止。

第二个选项是使用TestNG。TestNG是可以的,但每种情况下,浏览器打开。我如何创建一个测试,就像打开一个浏览器,然后在该浏览器中运行所有测试用例?

顺便说一下,这是我为您的imagine all图片提供的示例测试用例:

-@beforeclass:打开浏览器-打开网址-登录

@test 1:进入产品界面-点击创建产品-创建初始数量的产品-然后点击保存按钮,它应该再次出现在产品界面。

@test 2:再次单击创建产品按钮。-创建一个没有初始数量的产品-单击保存按钮,它应该会出错。单击取消按钮继续第三个@test

@test3:等等...

-@afterclass:关闭浏览器

我真的很感谢你的帮助!非常感谢。

编辑:我像这样切换我的代码。因为我不想我的自动化打开一个新的浏览器一遍又一遍。我所有的测试用例只涉及一个屏幕。(产品)我想要的是订购:

  1. 启动@BeforeSuite(打开浏览器,URL...)
  2. 启动@BeforeClass(转到产品屏幕-因为它是所有情况下的通用屏幕)
  3. 为测试用例1启动@test
  4. 启动@AfterClass(再次转到Products屏幕以连接测试用例2
  5. 启动测试用例2

我的测试课:

<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd" >

<suite name="AllTests" verbose="10" >

  <test name="prcr1.1" >
    <classes>
       <class name="com.example.product.prcr1dot1" />
    </classes>
  </test>

  <test name="prcr1.2" >
    <classes>
       <class name="com.example.product.prcr1dot2" />
    </classes>
  </test>
  </suite>

我的基类:

public class BaseClass {
    protected WebDriver driver;

    @BeforeSuite

    public void openMyexample() throws InterruptedException {
        System.out.println("Initiate LoginTest Test...");
        driver = utilities.DriverFactory.open("chrome");
        driver.manage().window().maximize();
        driver.get("https://mystage.example.com/en/public/login/?isTestAutomationLive=true");
        System.out.println("example Page Has Been Opened..");

        WebDriverWait wait = new WebDriverWait(driver, 20);
        wait.until(ExpectedConditions.elementToBeClickable((By.name("email"))));

        // Enter Username Section
        WebElement username = driver.findElement(By.name("email"));
        username.sendKeys("automationproducts4@example.com");
        Thread.sleep(1000);
        wait.until(ExpectedConditions.elementToBeClickable((By.name("password"))));
        // Enter Password Section
        WebElement password = driver.findElement(By.name("password"));
        password.sendKeys("Test*01");
        Thread.sleep(1000);
        wait.until(ExpectedConditions.elementToBeClickable((By.xpath("//form[@id='frmLogin']/button"))));

        // Click Login Button
        WebElement logInButton = driver.findElement(By.xpath("//form[@id='frmLogin']/button"));
        logInButton.click();

        // PAGE LOADER

        wait.until(ExpectedConditions.elementToBeClickable((By.xpath("//span[contains(.,'×')]"))));

        Thread.sleep(1000);

        // Integration Message Function WebElement - Option 1: WebElement
        WebElement popupCancelButton = driver.findElement(By.xpath("//span[contains(.,'×')]"));
        popupCancelButton.click();
        Thread.sleep(3000);
    }

    @BeforeClass
    public void openProducts() throws InterruptedException {

        WebDriverWait wait = new WebDriverWait(driver, 20);
        // From Dashboard Section to Product Section
        wait.until(ExpectedConditions.elementToBeClickable((By.xpath("//a[contains(text(),'Products')]"))));
        WebElement productButton = driver.findElement(By.xpath("//a[contains(text(),'Products')]"));
        productButton.click();
        Thread.sleep(4000);

        wait.until(ExpectedConditions.elementToBeClickable((By.xpath("//button[contains(.,'Create Product')]"))));
        WebElement createProductButton = driver.findElement(By.xpath("//button[contains(.,'Create Product')]"));
        createProductButton.click();
        Thread.sleep(4000);
    }

    @AfterClass
    public void closeProducts() throws InterruptedException {

        WebDriverWait wait = new WebDriverWait(driver, 20);
        wait.until(ExpectedConditions.elementToBeClickable((By.xpath("//a[contains(text(),'Products')]"))));
        WebElement productButton = driver.findElement(By.xpath("//a[contains(text(),'Products')]"));
        productButton.click();
        Thread.sleep(4000);

    }

    @AfterSuite
    public void closeMyexample() throws InterruptedException {
        WebDriverWait wait = new WebDriverWait(driver, 60);

        Thread.sleep(4000);

        // Sign Out Thread.sleep(5000);
        wait.until(ExpectedConditions.elementToBeClickable((By.xpath("//div[2]/i"))));
        WebElement logoutScrollDownButton = driver.findElement(By.xpath("//div[2]/i"));
        logoutScrollDownButton.click();
        Thread.sleep(3000);
        WebElement signoutButton = driver.findElement(By.xpath("//a[contains(.,'Sign Out')]"));
        signoutButton.click();

        // Close Browser
        System.out.println("Your Test Has Been Ended Successfully.");
        Thread.sleep(1000);
        System.out.println("Your Test is going to Close..");
        driver.quit();

    }

    // Sleep Function
    private void sleep(long m) {
        try {
            Thread.sleep(m);
        } catch (InterruptedException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
    }
}

我的测试案例1:

包装com.example.product;

import utilities.BaseClass;

//Test Case 1: PRCR - 1.1
//Creating a new product with a unique SKU 
public class prcr1dot1 extends BaseClass {
    @Test
    public void prcr1dot1() throws InterruptedException {

        WebDriverWait wait = new WebDriverWait(driver, 20);

        wait.until(ExpectedConditions.elementToBeClickable((By.name("sku"))));
        String uuid = UUID.randomUUID().toString();
        driver.findElement(By.name("sku")).sendKeys(uuid);

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

        WebElement packType = driver
                .findElement(By.xpath("//kendo-dropdownlist[@id='packTypeName']//span[@class='k-input']"));
        packType.click();
        wait.until(ExpectedConditions.elementToBeClickable((By.xpath(
                "/html//platform-root/kendo-popup[@class='k-animation-container k-animation-container-shown']//input"))));
        driver.findElement(By.xpath(
                "/html//platform-root/kendo-popup[@class='k-animation-container k-animation-container-shown']//input"))
                .sendKeys(uuid);
        wait.until(ExpectedConditions.elementToBeClickable((By.id("btnCreateProductPackTypeName"))));
        WebElement createPackType = driver.findElement(By.id("btnCreateProductPackTypeName"));
        createPackType.click();

        wait.until(ExpectedConditions.elementToBeClickable((By.xpath("//button[contains(.,'SAVE')]"))));
        WebElement productSaveButton = driver.findElement(By.xpath("//button[contains(.,'SAVE')]"));
        productSaveButton.click();
        Thread.sleep(8000);
    }
}

我的测试用例2:

import utilities.BaseClass;

public class prcr1dot2 extends BaseClass {
    // Test Case 2: PRCR - 1.2
    // Creating a new product with the used SKU

    @Test
    public void prcr1dot2() throws InterruptedException {

        WebDriverWait wait = new WebDriverWait(driver, 20);

        wait.until(ExpectedConditions.elementToBeClickable((By.name("sku"))));
        driver.findElement(By.name("sku")).sendKeys("SKU08");

        String uuid = UUID.randomUUID().toString();
        driver.findElement(By.name("name")).sendKeys(uuid);

        WebElement packType = driver
                .findElement(By.xpath("//kendo-dropdownlist[@id='packTypeName']//span[@class='k-input']"));
        packType.click();
        wait.until(ExpectedConditions.elementToBeClickable((By.xpath(
                "/html//platform-root/kendo-popup[@class='k-animation-container k-animation-container-shown']//input"))));
        driver.findElement(By.xpath(
                "/html//platform-root/kendo-popup[@class='k-animation-container k-animation-container-shown']//input"))
                .sendKeys(uuid);
        wait.until(ExpectedConditions.elementToBeClickable((By.id("btnCreateProductPackTypeName"))));
        WebElement createPackType = driver.findElement(By.id("btnCreateProductPackTypeName"));
        createPackType.click();

        JavascriptExecutor jsx = (JavascriptExecutor) driver;
        jsx.executeScript("window.scrollBy(0,450)", "");

        WebElement productSaveButton = driver.findElement(By.xpath("//button[contains(.,'SAVE')]"));
        productSaveButton.click();

        Thread.sleep(5000);
        wait.until(ExpectedConditions.elementToBeClickable((By.xpath("//button[contains(.,'Create Product')]"))));

        WebElement createProductButton2 = driver.findElement(By.xpath("//button[contains(.,'Create Product')]"));
        createProductButton2.click();

        wait.until(ExpectedConditions.elementToBeClickable((By.name("sku"))));
        driver.findElement(By.name("sku")).sendKeys("SKU08");

        String uuid2 = UUID.randomUUID().toString();
        driver.findElement(By.name("name")).sendKeys(uuid2);

        WebElement packType2 = driver
                .findElement(By.xpath("//kendo-dropdownlist[@id='packTypeName']//span[@class='k-input']"));
        packType2.click();
        wait.until(ExpectedConditions.elementToBeClickable((By.xpath(
                "/html//platform-root/kendo-popup[@class='k-animation-container k-animation-container-shown']//input"))));
        String uuid3 = UUID.randomUUID().toString();
        driver.findElement(By.xpath(
                "/html//platform-root/kendo-popup[@class='k-animation-container k-animation-container-shown']//input"))
                .sendKeys(uuid3);
        wait.until(ExpectedConditions.elementToBeClickable((By.id("btnCreateProductPackTypeName"))));
        WebElement createPackType2 = driver.findElement(By.id("btnCreateProductPackTypeName"));
        createPackType2.click();

        /*
         * WebElement productSaveButton2 =
         * driver.findElement(By.xpath("//button[contains(.,'SAVE')]"));
         * productSaveButton2.click(); Thread.sleep(5000); WebElement
         * productCancelButton2 =
         * driver.findElement(By.xpath("//button[contains(.,'CANCEL')]"));
         * productCancelButton2.click(); Thread.sleep(2000);
         * wait.until(ExpectedConditions.elementToBeClickable((By.xpath(
         * "//button[contains(.,'YES')]")))); WebElement productCancelYesButton =
         * driver.findElement(By.xpath("//button[contains(.,'YES')]"));
         * productCancelYesButton.click();
         */

    }

}

共有1个答案

锺威
2023-03-14

我不确定它是否能解决你的问题。但是这个想法对我有用。使用这种方式,您可以在同一个浏览器上运行所有测试用例,而无需多次打开。

这里我有三节课

test1.java

test2.java

测试2。JAVA

还有主课。JAVA

这里是test1.java

package test;

import org.openqa.selenium.WebDriver;
import org.openqa.selenium.chrome.ChromeDriver;
import org.testng.annotations.AfterMethod;
import org.testng.annotations.BeforeClass;
import org.testng.annotations.BeforeMethod;
import org.testng.annotations.Test;

public class test1 {

    @BeforeClass
    public void before(){

    }
    @Test
    public static void test(WebDriver driver){
        driver.get("https://www.google.com");
    }
    @AfterMethod
    public void after(){

    }
}

这里是test2。JAVA

package test;

import org.openqa.selenium.WebDriver;
import org.testng.annotations.Test;

public class test2 {
    @Test
    public static void test(WebDriver driver){
        driver.get("https://www.yahoo.com");
    }
}

这是主要课程。我将驱动程序会话传递给测试的java文件

package test;

import org.openqa.selenium.WebDriver;
import org.openqa.selenium.chrome.ChromeDriver;

public class Mainclass {

    public static void main(String[]args){
        WebDriver driver;
        driver=new ChromeDriver();
        test1.test(driver);
        test2.test(driver);
    }

}

现在您需要从测试中运行mainclass。xml文件

从主类中,您可以一次性打开浏览器,并将驱动程序传递给您的所有测试用例,以便它将使用浏览器窗口运行测试用例。

我不确定任何其他理想的想法是可用或没有但它肯定会工作为您

 类似资料:
  • 英文原文:http://emberjs.com/guides/testing/test-runners/ 当运行测试时,可以在很多种不同的方案里选取最适合工作流的方案。找到一种摩擦最低的运行测试的方案非常重要,因为测试是一项经常要做的事情。 浏览器 运行测试的最简单的方法是直接在浏览器中打开页面。下面将展示如何加入一个qunit的测试harness给应用,并可以针对其运行测试: 首先,从这里获取一

  • 自动化测试 如果你想构建可靠的高质量的软件,自动化测试将是你工具箱里面非常关键的一个部分,它帮助你减少手工测试的代价,提高你的开发小组重构已有代码的能力。 自动化测试的类型  并非所有的自动化测试都是相似的,他们通常在作用域、实现方式和执行时间上有所差异,我把他们分成三种类型的测试:单元测试、集成测试和功能测试。 单元测试用于测试你代码的最小单元,在基于java的项目中这个单元就是一个方法(met

  • 传统的接口自动化测试成本高,大量的项目没有使用自动化测试保证接口的质量,仅仅依靠手动测试,是非常不可靠和容易出错的。 YApi 为了解决这个问题,开发了可视化接口自动化测试功能,只需要配置每个接口的入参和对 RESPONSE 断言,即可实现对接口的自动化测试,大大提升了接口测试的效率。 第一步,测试集合 使用 YApi 自动化测试,第一步需要做得是创建测试集合和导入接口,点击添加集合创建,创建完成

  • 1 测试内容 1.1 视觉人员测试 1.2 产品经理测试 1.3 测试人员测试 2 测试工具 2.1 UI 测试工具 2.1.1 TestComplete 2.1.2 RobotFramework 2.1.3 Katalon Studio 参考

  • 在 Hyperf 里测试默认通过 phpunit 来实现,但由于 Hyperf 是一个协程框架,所以默认的 phpunit 并不能很好的工作,因此我们提供了一个 co-phpunit 脚本来进行适配,您可直接调用脚本或者使用对应的 composer 命令来运行。自动化测试没有特定的组件,但是在 Hyperf 提供的骨架包里都会有对应实现。 composer require hyperf/testi

  • 自动化测试 Clojure里面主要的主要自动化测试框架是clojure core里面自带的。下面的代码演示了它的一些主要特性: (use 'clojure.test) ; Tests can be written in separate functions. (deftest add-test ; The "is" macro takes a predicate, arguments to