在JENKINS上部署selenium+python环境遇到的坑

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在JENKINS上部署selenium+python环境遇到的坑相关的知识,希望对你有一定的参考价值。

1.找不到浏览器

   需安装PyVirtualDisplay

   安装的时候发现pip不好用,只能用pip.exe

 

2.执行Firefox的时候log报错

  ###!!! [Parent][MessageChannel] Error: (msgtype=0x2E007D,name=PBrowser::Msg_Destroy) Channel error: cannot send/recv

  JavaScript error: resource://app/modules/ContentCrashHandlers.jsm, line 75: TypeError: browser.permanentKey is not a non-null object

  ###!!! [Parent][MessageChannel] Error: (msgtype=0x2E007D,name=PBrowser::Msg_Destroy) Channel error: cannot send/recv

  org.openqa.selenium.remote.ProtocolHandshake createSession
  INFORMATION: Detected dialect: W3C

  ###!!! [Parent][MessageChannel] Error: (msgtype=0x2E007D,name=PBrowser::Msg_Destroy) Channel error: cannot send/recv  
  
  换了n个浏览器版本+driver版本
  最后发现是因为火狐加载了一个vpn插件。。禁用了就可以了

 

3.输出的report路径挂载在tomcat上,却403/404

  因为tomcat默认的设置不是实时reload

  需要在/conf/sever.xml下的host标签中加一行

  <Context path="tomcat部署路径" docBase="文件夹相对or绝对路径" debug="0" reloadable="true"/> 

 





以上是关于在JENKINS上部署selenium+python环境遇到的坑的主要内容,如果未能解决你的问题,请参考以下文章

Jenkins+python+selenium持续继承自动化测试

惊!测试大佬钟爱的Jenkins自动化部署如此简单,帮你解放时间!

在Jenkins服务器中查看Selenium脚本

如何在AWS中运行我的本地selenium测试脚本而不使用jenkins

Jenkins部署python项目时,提示找不到自己定义的模块包的问题

在 Windows 上使用 Jenkins 运行 Selenium 测试期间,如何在未实际登录机器时捕获屏幕截图?