更换用户代理时在竹子中找不到的测试

时间:2012-12-27 15:29:47

标签: python selenium user-agent bamboo

我有一组测试要在Bamboo中运行Selenium& Python。

我已将以下内容添加到我的脚本中(以便使用iPhone用户代理运行测试,而不是默认的测试):

**

profile = webdriver.FirefoxProfile()
profile.set_preference("general.useragent.override",
                           "Mozilla/5.0 (iPhone; CPU iPhone OS 6_0 like Mac OS X) AppleWebKit/536.26 (KHTML, like Gecko) Version/6.0 Mobile/10A5376e Safari/8536.25")
driver = webdriver.Firefox(profile)
driver.implicitly_wait(15)

**

在本地运行时,所有测试都正确运行,但在Bamboo中,我收到以下错误:“由于预期测试用例但未找到任何测试用例,因此任务失败。”

我真的需要使用移动用户代理,否则,测试将在应用程序的桌面版本上运行,这不是我想要的。

任何建议都将受到高度赞赏。

0 个答案:

没有答案