selenium测试应用程序路径问题测试未在选定的URL上运行

时间:2010-09-13 21:41:26

标签: command-line selenium selenium-rc

我尝试使用命令行启动我的selenium测试但是测试被激发到 http://mycomputer 而不是 http://mycomputer/myapplication

D:\projectsnet\Production\MyWebTests\tools\selenium-server>java -jar selenium-
server.jar -Dhttp.proxyHost=mycomputer -Dhttp.proxyport=4444 -htmlSuite "*firefox" "ht
tp://mycomputer/myapplication/" "D:\mypathtotestssuites\0001-testsuite.html" "c:\temp\result.html"

在测试用例中,我有链接

<link rel="selenium.base" href="http://mycomputer/myapplication/" />

1 个答案:

答案 0 :(得分:1)

这是设计的。

如果您正在针对http://mycomputer/myapplication/进行开发,那么我建议您将http://mycomputer作为baseURL,然后添加

open | /myapplication/

到测试的顶部。