Chrome/firefox/safari- browser does not auto-start on macOS unless Selenium Standalone is manually launched

未关闭
#5,338 1 条评论 0 个 reaction 已指派 0 人 在 GitHub 查看

还没有人认领这个 Issue。

评估

难度
3/5
预计耗时
1-2 天
新手友好度
35/100
Issue 类型
缺陷
描述清晰度
需要澄清
活跃度
停滞
技术栈
javascript, nodejs
领域
testing

调研方向

从报告的 codecept.conf.js WebDriver 配置开始,尤其是 services: ["chromedriver"] 设置和 macOS 环境详细信息。在 macOS 上复现该配置,并验证浏览器是否能在不手动启动 Selenium Standalone 的情况下启动;当连接错误不再发生时即表示完成。

由索引模型根据 Issue 内容生成。

描述

stale

Please share the macOS-supported codecept.conf.js file. With the current configuration below, the local automation does not automatically start ChromeDriver on macOS
Error | Error: Can't connect to WebDriver
We need to explicitly start standalone Selenium to launch the browser

node version-v14.15.5
npm version-6.14.5

exports.config = {
tests: "./*_test.js",
output: "./output",
/** -----------------------------

  • 🚀 HELPERS
  • ----------------------------- /
    helpers: {
    WebDriver: {
    url: prop.url,
    browser: browser,
    restart: false,
    smartWait: 10000,
    waitForTimeout: 50000,
    windowSize: windowSize,
    /
    * Auto-start ChromeDriver on Mac /
    services: ["chromedriver"],
    capabilities: {
    acceptInsecureCerts: true,
    'goog:chromeOptions': {
    excludeSwitches: ['enable-automation'],
    prefs: {
    download: {
    default_directory: prop.downloadDir,
    prompt_for_download: false
    }
    }
    }
    }
    },
    /
    * Custom Helpers /
    ChaiWrapper: {
    require: "codeceptjs-chai",
    },
    MyHelper: {
    require: "./myHelper.js",
    },
    },
    /
    * -----------------------------
  • BOOTSTRAP + TEARDOWN
  • ----------------------------- /
    bootstrap: require("./dist/Bootstrap/bootstrap.js").bootstrap,
    teardown: require("./dist/Bootstrap/bootstrap.js").teardown,
    teardownAll: require("./src/get_all_reports.js"),
    include: {
    I: prop.stepFilePath,
    },
    /
    * -----------------------------
  • PARALLEL EXECUTION
  • ----------------------------- /
    multiple: {
    parallel: { chunks: 1 },
    sanityCases: { chunks: 2 }
    },
    /
    * -----------------------------
  • BDD (Gherkin)
  • ----------------------------- /
    gherkin: {
    features: [
    './src//features//.feature',
    "./src/
    /src///
    .feature"
    ],
    steps: "./dist//implementation///*.js"
    },
    name: prop.projectName,
    /
    -----------------------------
  • PLUGINS
  • ----------------------------- /
    plugins: {
    xpathValidate: {
    require: "./src/xpathValidation.js",
    enabled: true
    },
    retryFailedStep: { enabled: true },
    tryTo: { enabled: true },
    screenshotOnFail: {
    enabled: true,
    uniqueScreenshotNames: true
    },
    /
    * ❌ WDIO plugin is removed – not needed */
    // wdio: { ... } → deleted
    autoDelay: {
    enabled: true,
    delayBefore: 1000,
    delayAfter: 500,
    methods: ['click', 'fillField', 'checkOption']
    },
    allure: {
    enabled: true,
    require: '@codeceptjs/allure-legacy'
    },
    selenoidOptions: {
    sessionTimeout: "300s",
    enableVNC: false,
    enableVideo: false
    },
    require: ["ts-node/register"]
    }
    };

@danielrentz @davert

主要语言
JavaScript
星标
4.2k
派生
756
平均合并
2 天 9 小时
30 天内合并 PR
16

贡献指南

打开贡献指南

从这里开始

  1. 先读完整个 Issue,再读项目的贡献指南。
  2. 在 Issue 下留言说明你要接手 —— 这能避免两个人做同样的事。
  3. Fork 仓库,在一个分支上完成修改。
  4. 提交 Pull Request,并在描述里引用这个 Issue 编号。

codeceptjs/CodeceptJS 的其他 Issue

查看 codeceptjs/CodeceptJS 的全部 Issue

相似的 Issue

更多 JavaScript Issue

把新 issue 发到你的邮箱

精选适合新手参与的 GitHub issue 摘要。