运行测试时获取HTTP错误403

我试图通过Hudson插件(一个名为sleniumhq插件)使用Selenium工具来测试我的应用程序。

作为一个概念证明,我决定做一个非常简单的测试,针对谷歌,测试是下面的一个:

<?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>

此测试打开谷歌然后搜索硒rc。

当我使用Hudson运行它时,在打开的浏览器中出现HTTP错误403。 Hudson或Selenium没有提出具体的错误。

这是我的哈德森配置:

浏览器:* iehta

startUrl:http://:4444 / selenium-server /

suiteFile:suite.html(套件指向之前描述的测试)

resultFile:result.html

other:-timeout 5 -debug -browserSideLog -ensureCleanSession -trustAllSSLCertificates

htmlSuiteRunner:C: selenium selenium-remote-control-1.0.1 selenium-server-1.0.1 selenium-server.jar

你们是否已经面临这样的问题? 它与用户权限定义有关吗?

在此先感谢您的帮助!


我对哈德森不熟悉,但那开始乌尔看起来不正确。 你打算在那里拥有Selenium RC服务器的IP地址吗? 例如:http://10.100.1.1:4444

另外,如果您使用的是最新版本的Selenium(1.0),那么浏览器应该设置为'* iexplore',以HTA模式用于Internet Explorer。

链接地址: http://www.djcxy.com/p/50675.html

上一篇: Getting HTTP error 403 when running tests

下一篇: Fixed Assembly Version with Auto Incremented File Version?