我正在运行HTML测试套件:
java -jar /var/lib/selenium/selenium-server.jar -browserSessionReuse -htmlSuite *firefox http://$HOST ./test/selenium/html/TestSuite.html ./target/selenium/html/TestSuiteResults.html
有没有办法在目录中运行所有测试套件,或者创建测试套件的测试套件?
答案 0 :(得分:0)
我对Selenium很新,真的只有Selenium2。我使用“TestNG”作为我的测试框架,它使用xml文件支持套件套件和套件,该文件指定哪些带有特定注释的测试是套件的一部分。
如果你正在寻找套件的套件,并且你只使用Java(TestNG没有,据我所知,它支持除Java以外的任何东西),那么你可能会找到你正在寻找的东西。
答案 1 :(得分:0)
我创建了一个grails脚本来自动创建一个super-testsuite。需要修改测试套件是添加测试的又一步,每个级别的屏障都会增加开发人员拒绝编写测试的可能性。
import groovy.io.FileType
includeTargets << grailsScript("Init")
target(main: "Auto-generates the TestSuite.html file needed for selenium based on selenium html tests in test/selenium/html/**") {
File testSuiteOutputFile = new File("test/selenium/html/TestSuite.html")
testSuiteOutputFile.delete()
String testRows = buildTestRows()
testSuiteOutputFile <<
"""
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta content="text/html; charset=UTF-8" http-equiv="content-type" />
<title>Test Suite</title>
</head>
<body>
<table id="suiteTable" cellpadding="1" cellspacing="1" border="1" class="selenium"><tbody>
<tr><td><b>Test Suite</b></td></tr>
$testRows
</tbody></table>
</body>
</html>
"""
}
private def buildTestRows() {
String testRows = ""
List<File> testFiles = getAllTestFilesInSeleniumDirectory()
testFiles.each { file ->
def relativePath = buildFilePathRelativeToTestSuite(file)
println "Adding $relativePath to TestSuite"
testRows += "<tr><td><a href='${relativePath}'>${file.name}</a></td></tr>"
testRows += "<tr><td><a href='clearCache.html'>Clear Cache</a></td></tr>"
}
testRows
}
private List<File> getAllTestFilesInSeleniumDirectory() {
File testsDirectory = new File("test/selenium/html")
def files = []
testsDirectory.eachFileRecurse(FileType.FILES) { files << it }
files
}
private String buildFilePathRelativeToTestSuite(File file){
File parentDirectory = new File("test/selenium/html")
String relativePath = file.name
file = file.parentFile
while( file != parentDirectory ){
relativePath = file.name + "/" + relativePath;
file = file.parentFile
}
relativePath
}
setDefaultTarget(main)
答案 2 :(得分:0)
看看Selunit。它提供了一个Maven插件,可以批量执行Selenese套件,并将报告转换为Junit格式。最后一个对于将测试执行集成到像Jenkins这样的CI服务器非常有用,它可以生成漂亮的图表并在出现测试错误时通知。