自定义路径 - selenium 未运行
我正在尝试使用自定义的 Firefox 配置文件运行测试。我的想法是 在我的机器上使用 2 个 Firefox 版本。其中一个带有 Firefox 模板和 Firefox 模板。 其他没有它,所以我们使用 *自定义“C:/Program Files (x86)/UtiluMFC/Mozilla Firefox 3.6/ 如果我使用自定义,则代码中的“firefox.exe”设置
会在 url 中传递一些额外参数,如下所示 浏览器, selenium-server/core/RemoteRunner.html? sessionId=dc91ae43b4754f87a25d4718feeb&multiWindow=true&baseUrl=http%3A %2F%2Ftest.com&debugMode=false
注意:我没有从我使用过的命令提示符启动服务器 在java中,但没有在代码中设置任何firefox模板。同样可以在 我使用 * firefox 而不是 * custom 的 linux
我错过了一些东西吗?
I'm trying to run tests with a custom firefox profile.my idea is to
use 2 firefox versions in my machine .one with firefox template &
other without it ,so we used
*custom "C:/Program Files (x86)/UtiluMFC/Mozilla Firefox 3.6/
firefox.exe" in setup from code
if i use custom some extra parameters are passing in url like below in
browser ,
selenium-server/core/RemoteRunner.html?
sessionId=dc91ae43b4754f87a25d4718feeb&multiWindow=true&baseUrl=http%3A
%2F%2Ftest.com&debugMode=false
Note : i have not started the server from command prompt i have used
in java ,but havnt set any firefox template in code.same worked in
linux of i use * firefox instead of * custom
Am i missing some thing?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
问题不太清楚 - 模板是什么意思?
如果您想使用两个不同的 Firefox 配置文件运行,请不要使用 *custom - 而是使用 *firefox 并按照此帖子更改配置文件:
Selenium RC:设置 Firefox 代理
The question is not that clear - what do you mean by template?
If you want to run with two different Firefox profiles, don't use *custom - rather use *firefox and change the profile as per this post:
Selenium RC : Setting up a Firefox proxy
我想我也遇到了同样的问题,我相信必须在自定义 Firefox 中设置代理设置才能使其正常工作。你尝试过吗?
或者您只想使用配置文件模板,在这种情况下,您可以在命令中传递
-firefoxProfileTemplate
来启动 JAVA 服务器,如下所示:在第二种情况下,如果您使用
* firefox
,您的个人资料将被自动选择。I think I am strougling with the same and I believe one has to set the proxy settings in the custom firefox to make it work. Did you try that?
Or did you just want to use a profile TEMPLATE in which case you could pass the
-firefoxProfileTemplate
in your command to start the JAVA server, like so:In the second case, if you use
*firefox
, your profile will automatically be selected.