{"id":20560118,"url":"https://github.com/webdriverio-community/wdio-edgedriver-service","last_synced_at":"2025-05-09T17:33:01.786Z","repository":{"id":63905443,"uuid":"200460788","full_name":"webdriverio-community/wdio-edgedriver-service","owner":"webdriverio-community","description":"WebdriverIO service to start \u0026 stop EdgeDriver","archived":true,"fork":false,"pushed_at":"2023-08-03T23:54:33.000Z","size":2451,"stargazers_count":2,"open_issues_count":0,"forks_count":3,"subscribers_count":8,"default_branch":"main","last_synced_at":"2025-04-26T11:50:06.705Z","etag":null,"topics":["edge","edgedriver","wdio","wdio-plugin","wdio-service"],"latest_commit_sha":null,"homepage":"https://webdriver.io","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/webdriverio-community.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"tidelift":"npm/webdriverio","open_collective":"webdriverio"}},"created_at":"2019-08-04T07:02:55.000Z","updated_at":"2024-05-01T00:51:41.000Z","dependencies_parsed_at":"2024-06-19T04:09:56.773Z","dependency_job_id":"e64b7077-102f-4f7b-af39-7d1b310b6dde","html_url":"https://github.com/webdriverio-community/wdio-edgedriver-service","commit_stats":{"total_commits":217,"total_committers":5,"mean_commits":43.4,"dds":0.3179723502304147,"last_synced_commit":"986eb125ebc4b434acc5c766eb5e984efb3d6330"},"previous_names":[],"tags_count":8,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/webdriverio-community%2Fwdio-edgedriver-service","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/webdriverio-community%2Fwdio-edgedriver-service/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/webdriverio-community%2Fwdio-edgedriver-service/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/webdriverio-community%2Fwdio-edgedriver-service/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/webdriverio-community","download_url":"https://codeload.github.com/webdriverio-community/wdio-edgedriver-service/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":253295796,"owners_count":21885695,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["edge","edgedriver","wdio","wdio-plugin","wdio-service"],"created_at":"2024-11-16T03:53:13.227Z","updated_at":"2025-05-09T17:33:01.363Z","avatar_url":"https://github.com/webdriverio-community.png","language":"TypeScript","funding_links":["https://tidelift.com/funding/github/npm/webdriverio","https://opencollective.com/webdriverio"],"categories":["Plugins"],"sub_categories":["Services"],"readme":"⚠️ __DEPRECATION WARNING:__ This service got deprecated and is no longer maintained. If you use WebdriverIO __v8.14__ or higher. We recommend to remove the service as dependency and from your WebdriverIO configuration as it is no longer needed. For more information, please read [this blog post](https://webdriver.io/blog/2023/07/31/driver-management).\n\n# WDIO EdgeDriver Service [![Tests](https://github.com/webdriverio-community/wdio-edgedriver-service/actions/workflows/test.yml/badge.svg?branch=main)](https://github.com/webdriverio-community/wdio-edgedriver-service/actions/workflows/test.yml) [![Audit](https://github.com/webdriverio-community/wdio-edgedriver-service/actions/workflows/audit.yml/badge.svg)](https://github.com/webdriverio-community/wdio-edgedriver-service/actions/workflows/audit.yml)\n\nThis service helps you to run Microsoft WebDriver (Edge) seamlessly when running tests with the [WDIO testrunner](https://webdriver.io/docs/gettingstarted.html).\n\nIt does not require a Selenium server, but uses the [Microsoft WebDriver](https://developer.microsoft.com/en-us/microsoft-edge/tools/webdriver/) that is installed as a Windows Feature on Demand or as [`edgedriver`](https://www.npmjs.com/package/edgedriver) NPM package for Chromium-based Edge.\n\nExample capabilities:\n\n```js\ncapabilities: [{\n    browserName: 'MicrosoftEdge'\n}]\n```\n\n## Installation\n\n```bash\nnpm install wdio-edgedriver-service --save-dev\n```\n\n## Configuration\n\nBy design, only Edge is available. In order to use the service you need to add `edgedriver` to your service array:\n\n```js\n// wdio.conf.js\nexport.config = {\n    // MANDATORY: Add edgedriver to service array.\n    // Default: empty array\n    services: [\n        'edgedriver',\n        // service options\n        {\n            outputDir: './logs',\n            // see https://github.com/webdriverio-community/node-edgedriver#options for more\n            // options that can be passed into EdgeDriver directly\n            edgedriverOptions: {\n                verbose: true\n            }\n        }\n    ],\n};\n```\n\n## Options\n\n### `outputDir`\n\nThe path where the output of the Safaridriver server should be stored (uses the `config.outputDir` by default when not set).\n\nType: `string`\n\n### `logFileName`\n\nThe name of the log file to be written in `outputDir`. Requires `outputDir` to be set in WebdriverIO config or as service option.\n\nType: `string`\u003cbr /\u003e\nDefault: `wdio-edgedriver-service-\u003ccid\u003e.log`\n\n### `edgedriverOptions`\n\nOptions that are passed into EdgeDriver. See [driver docs](https://github.com/webdriverio-community/node-edgedriver#options) for more information.\n\nType: `EdgedriverParameters`\u003cbr /\u003e\nDefault: _`{}`_\n\n\n----\n\nFor more information on WebdriverIO see the [homepage](https://webdriver.io).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwebdriverio-community%2Fwdio-edgedriver-service","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwebdriverio-community%2Fwdio-edgedriver-service","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwebdriverio-community%2Fwdio-edgedriver-service/lists"}