Webdriver 自动化测试初试
Posted 51Testing软件测试网
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Webdriver 自动化测试初试相关的知识,希望对你有一定的参考价值。
之前已经搭建了测试需要的环境,也学习了locateelements的方法,下面我们就来创建第一个简单的自动化测试用例。
测试场景如下:
1.打开百度首页
2.在搜索框输入关键字搜索,比如:webdriverautomationtesting
3.点击百度一下button
4.验证搜索结果是否包含输入的关键字
用例自动化测试代码实例如下:
packagecom.example.tests;
importorg.openqa.selenium.By;
importorg.openqa.selenium.WebDriver;
importorg.openqa.selenium.firefox.FirefoxDriver;
importorg.testng.Assert;
importorg.testng.annotations.AfterMethod;
importorg.testng.annotations.BeforeMethod;
importorg.testng.annotations.Test;
publicclassBaiDuSearchTest{
privateWebDriverdriver;
privateStringbaseUrl;
@BeforeMethod
publicvoidsetUp()throwsException{
//LaunchFirefoxbrowser
driver=newFirefoxDriver();
baseUrl="http://www.baidu.com";
......
以上是关于Webdriver 自动化测试初试的主要内容,如果未能解决你的问题,请参考以下文章
python3里使用selenium webdriver自动化测试