如何降级gitlab-runner或以特定版本运行?

时间:2019-05-23 13:43:29

标签: homebrew gitlab-ci-runner

将gitlab-runner升级到版本11.11.0后,我无法运行本地作业,例如columns : { header : 'Source' } 。总是,我收到一个错误:

selenium exception: "selenium.common.exceptions.ElementClickInterceptedException: Message: Element is not clickable at point (151,823) because another element obscures it

但是使用gitlab-runner 11.10.0效果很好。

我正在尝试使用driver.execute_script("arguments[0].click();",driver.find_element(*locator)) 降级gitlab-runner,但是它不起作用:

theTable.onmouseover = function(e){
        if (e.target.tagName === 'TD') {
            if (mouseDownState) {
                el = e.target;

                if (eraseState) {
                    el.removeAttribute("style");
                }
                else {
                    el.style.backgroundColor = curColor;
                }
            }
        }
    }

任何人都可以帮助我降级gitlab-runner 运行11.11.0版吗?

谢谢


编辑: 我找到了解决方法:

  • 我卸载了用自制软件安装的最新版本
  • 我在11.10.0版上安装了gitlab-runner的手动设置
gitlab-runner exec docker job_setup

0 个答案:

没有答案