错误 [严重]:从渲染器接收消息超时:20.000 在 Jenkins 上通过 Selenium 执行测试套件时 [英] Error [SEVERE]: Timed out receiving message from renderer: 20.000 while executing the testsuite through Selenium on Jenkins

查看:14
本文介绍了错误 [严重]:从渲染器接收消息超时:20.000 在 Jenkins 上通过 Selenium 执行测试套件时的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我使用 ChromeDriver 和 Selenium 来运行我的自动化测试.测试套件在 Eclipse 和命令行中都成功运行.但是,当我尝试在 Jenkins 中构建它时它不会运行.

I use ChromeDriver with Selenium to run my automated tests. The test suite runs successfully in both Eclipse and command line. However, it does not run when I try to build it in Jenkins.

这是我在 Jenkins 中的工作配置(所有信息的名称都经过了保密处理):我可以确认它的 Ant 正在运行 JDK8.

This is my job config in Jenkins (all info has names sanitized for confidentiality): I can confirm it's Ant is running JDK8.

这是构建的控制台输出:

This is the console output of the build:

[junit] Running main.TESTNAME
    [junit] Starting ChromeDriver 2.33.506120 (e3e53437346286c0bc2d2dc9aa4915ba81d9023f) on port 27352
    [junit] Only local connections are allowed.
    [junit] Apr 26, 2018 3:52:34 PM org.openqa.selenium.remote.ProtocolHandshake createSession
    [junit] INFO: Detected dialect: OSS
    [junit] Running through test suite as:
    [junit] User: USERNAME
    [junit] URL: CONFIDENTIAL
    [junit] [30.168][SEVERE]: Timed out receiving message from renderer: 20.000
    [junit] [30.170][SEVERE]: Timed out receiving message from renderer: -0.003
    [junit] Total number of tests ran for TESTNAME: 5, Number of tests failures: 4, Number of tests ignored: 0
    [junit] testViewProfileDetailsButtonAndBrowseBack(test.TESTNAME): timeout
    [junit]   (Session info: chrome=64.0.3282.119)
    [junit]   (Driver info: chromedriver=2.33.506120 (e3e53437346286c0bc2d2dc9aa4915ba81d9023f),platform=Windows NT 10.0.14393 x86_64) (WARNING: The server did not provide any stacktrace information)
    [junit] Command duration or timeout: 0 milliseconds
    [junit] Build info: version: '3.8.1', revision: '6e95a6684b', time: '2017-12-01T19:05:14.666Z'
    [junit] System info: host: 'PC', ip: 'IP', os.name: 'Windows 10', os.arch: 'amd64', os.version: '10.0', java.version: '1.8.0_151'
    [junit] Driver info: org.openqa.selenium.chrome.ChromeDriver
    [junit] Capabilities {acceptSslCerts: true, applicationCacheEnabled: false, browserConnectionEnabled: false, browserName: chrome, chrome: {chromedriverVersion: 2.33.506120 (e3e53437346286..., userDataDir: C:WINDOWSTEMPscoped_dir1...}, cssSelectorsEnabled: true, databaseEnabled: false, handlesAlerts: true, hasTouchScreen: false, javascriptEnabled: true, locationContextEnabled: true, mobileEmulationEnabled: false, nativeEvents: true, networkConnectionEnabled: false, pageLoadStrategy: normal, platform: XP, platformName: XP, rotatable: false, setWindowRect: true, takesHeapSnapshot: true, takesScreenshot: true, unexpectedAlertBehaviour: , unhandledPromptBehavior: , version: 64.0.3282.119, webStorageEnabled: true}

我下面的 build.xml 大部分是自动生成的,除了我添加 JUnit 集成的末尾:

My build.xml below is mostly auto-generated except for the end where I added JUnit integration:

<?xml version="1.0" encoding="UTF-8"?>
<project basedir="." default="build" name="PROJECTSeleniumTest">
<property environment="env"/>
<property name="debuglevel" value="source,lines,vars"/>
<property name="target" value="1.8"/>
<property name="source" value="1.8"/>
<path id="PROJECTSeleniumTest.classpath">
    <pathelement location="bin"/>
    <pathelement location="lib/byte-buddy-1.7.5.jar"/>
    <pathelement location="lib/client-combined-3.8.1-sources.jar"/>
    <pathelement location="lib/client-combined-3.8.1.jar"/>
    <pathelement location="lib/commons-codec-1.10.jar"/>
    <pathelement location="lib/commons-exec-1.3.jar"/>
    <pathelement location="lib/commons-logging-1.2.jar"/>
    <pathelement location="lib/gson-2.8.2.jar"/>
    <pathelement location="lib/guava-23.0.jar"/>
    <pathelement location="lib/hamcrest-core-1.3.jar"/>
    <pathelement location="lib/httpclient-4.5.3.jar"/>
    <pathelement location="lib/httpcore-4.4.6.jar"/>
    <pathelement location="lib/junit-4.12.jar"/>
</path>
<target name="init">
    <mkdir dir="bin"/>
    <copy includeemptydirs="false" todir="bin">
        <fileset dir="src">
            <exclude name="**/*.launch"/>
            <exclude name="**/*.java"/>
        </fileset>
    </copy>
</target>
<target name="clean">
    <delete dir="bin"/>
</target>
<target depends="clean" name="cleanall"/>
<target depends="build-subprojects,build-project,junit" name="build"/>
<target name="build-subprojects"/>
<target depends="init" name="build-project">
    <echo message="${ant.project.name}: ${ant.file}"/>
    <javac debug="true" debuglevel="${debuglevel}" destdir="bin" includeantruntime="false" source="${source}" target="${target}">
        <src path="src"/>
        <classpath refid="PROJECTSeleniumTest.classpath"/>
    </javac>
</target>

<target name="create_directory">
    <echo message="Create the directory JenkinsTestReports" />
    <mkdir dir="JenkinsTestReports" />
</target>   

<target name="junit" depends="create_directory">
    <echo message="${java.version}"/>
    <junit printsummary="yes" fork="yes" haltonfailure="yes">
        <classpath>
            <path refid="PROJECTSeleniumTest.classpath" />
            <pathelement location="${basedir}in"/>
        </classpath>
        <batchtest todir="JenkinsTestReports" fork="true">
          <fileset dir="${basedir}in">
            <include name="mainTESTNAME.class"/>
          </fileset>
        </batchtest>
        <formatter type="xml"/>
        <formatter type="plain"/>
    </junit>
</target>

有谁知道可能是什么原因?谢谢.

Does anyone know what the cause might be? Thanks.

推荐答案

这个错误信息...

[30.168][SEVERE]: Timed out receiving message from renderer: 20.000

...暗示 ChromeDriver 无法启动新的 Chrome 浏览器进程.

...implies that the ChromeDriver was unable to initiate a new Chrome browser process.

您的主要问题是您使用的二进制文件之间的版本兼容性,如下所示:

Your main issue is the version compatibility between the binaries you are using as follows :

  • 您正在使用 chromedriver=2.33
  • chromedriver=2.33 的发行说明明确提及以下内容:

支持 Chrome v60-62

  • 您正在使用 chrome=64.0
  • ChromeDriver v2.35 明确提及以下内容:
  • 支持 Chrome v62-64(包括您正在使用的浏览器版本)

    • 您的 Selenium 客户端 版本是 3.8.1.
    • 您的 JDK 版本1.8.0_151,相当旧.
      • Your Selenium Client version is 3.8.1.
      • Your JDK version is 1.8.0_151 which is pretty older.
      • 所以 JDK v8u151Selenium Client v3.8.1ChromeDriver v2.33Chrome 之间存在明显的不匹配浏览器 v64.0

        • JDK 升级到最新级别 JDK 8u162.
        • Selenium 升级到当前级别版本 3.11.0.
        • ChromeDriver 升级到当前的 ChromeDriverv2.38 级别.
        • Chrome 版本保持在 Chrome v66.x 级别.(根据 ChromeDriver v2.38 发行说明)
        • 清理你的项目工作区通过你的IDE重建你的项目只需要依赖.
        • 使用 CCleaner 工具清除之前和在您的测试套件执行之后.
        • 如果您的基础 Web Client 版本太旧,请通过 卸载它Revo Uninstaller 并安装最新的 GA 和发布版本的 Web Client.
        • 进行一次系统重启.
        • 执行你的 @Test.
        • Upgrade JDK to recent levels JDK 8u162.
        • Upgrade Selenium to current levels Version 3.11.0.
        • Upgrade ChromeDriver to current ChromeDriver v2.38 level.
        • Keep Chrome version at Chrome v66.x levels. (as per ChromeDriver v2.38 release notes)
        • Clean your Project Workspace through your IDE and Rebuild your project with required dependencies only.
        • Use CCleaner tool to wipe off all the OS chores before and after the execution of your Test Suite.
        • If your base Web Client version is too old, then uninstall it through Revo Uninstaller and install a recent GA and released version of Web Client.
        • Take a System Reboot.
        • Execute your @Test.

        这篇关于错误 [严重]:从渲染器接收消息超时:20.000 在 Jenkins 上通过 Selenium 执行测试套件时的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
相关文章
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆