我正在尝试使用Selenium工具通过Hudson插件(一个名为sleniumhq插件)来测试我的应用程序。
作为概念验证,我决定制作一个非常简单的测试目标谷歌,测试如下:
<?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 profile="http://selenium-ide.openqa.org/profiles/test-case">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<link rel="selenium.base" href="" />
<title>New Test</title>
</head>
<body>
<table cellpadding="1" cellspacing="1" border="1">
<thead>
<tr><td rowspan="1" colspan="3">New Test</td></tr>
</thead>
<tbody>
<tr>
<td>open</td>
<td>/</td>
<td></td>
</tr>
<tr>
<td>waitForPageToLoad</td>
<td>3000</td>
<td></td>
</tr>
<tr>
<td>type</td>
<td>q</td>
<td>selenium rc</td>
</tr>
<tr>
<td>click</td>
<td>btnG</td>
<td></td>
</tr>
</tbody></table>
</body>
此测试会打开Google,然后搜索selenium rc。
当我使用Hudson运行它时,我在打开的浏览器中收到HTTP错误403。 Hudson或Selenium没有提出具体错误。
这是我的Hudson配置:
浏览器:* iehta
startUrl:http://:4444 / selenium-server /
suiteFile:suite.html(套件指向之前描述的测试)
resultFile:result.html
其他:-timeout 5 -debug -browserSideLog -ensureCleanSession -trustAllSSLCertificates
htmlSuiteRunner:C:\ selenium \ selenium-remote-control-1.0.1 \ selenium-server-1.0.1 \ selenium-server.jar
你们有没有遇到过这样的问题?它是否与用户权限定义相关联?
提前感谢您的帮助!
答案 0 :(得分:1)
我不熟悉Hudson,但startUrl看起来并不正确。您是否打算在那里拥有Selenium RC服务器的IP地址?例如:http://10.100.1.1:4444
此外,如果您使用的是最新版本的Selenium(1.0),那么在HTA模式下,浏览器应设置为'* iexplore'用于Internet Explorer。