button_search_btnGif().click();
//Verify these three books are returned
//in the first results page
TestingComputerSoftware_textVP().performTest(2.0, 20.0);
LessonsLearnedInSoftwareTestinVP().performTest(2.0, 20.0);
HowToBreakSoftware_textVP().performTest(2.0, 20.0);
//Exit
browser_htmlBrowser(document_bookpoolDiscountCompu(),
MAY_EXIT).close();
}
}
在我查看这段测试脚本时,我看到了某些我想要能够在许多其它脚本 --执行一个搜索(图1)-- 中做的东西。有三行代码用于搜索:在qs 域上的点击,用于我们的搜索标准的 inputChars,以及在搜索按钮上的点击。
图 1. BookPool.com 搜索表单
我们知道,有可能开发人员某天会修改qs域的名字,或者他们可能使用一个搜索按钮的不同 gif 文件,您应当创建一个模块为您做这件事情。使用这种方式,如果您在某一时间必须修改您搜索的方法,您可以在一个地方修改它,它会在您所有调用该模块的测试脚本中生效。除此之外,您在您所有的测试脚本中,减少了执行一个搜索的代码行数量,从三个减少到一个。
列表2 显示了此搜索模块的代码。
列表 2. BookPool.com 搜索类
package classes;
import classes.bookpoolHelper;
public class bookpool_search extends bookpoolHelper {
public void performSearch(String criteria){
文章来源于领测软件测试网 https://www.ltesting.net/