Product
Socket Now Supports uv.lock Files
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
appium-chromium-driver
Advanced tools
Appium 2.x driver for Chromium-based browsers that work with Chromedriver
This is an Appium driver for Chromium-based browsers (like Chrome).
It is already possible to automate Chromium browsers with Chromedriver. In fact, this Appium driver uses Chromedriver under the hood! It is not any kind of fundamentally new or different technology. The advantages of using this project are:
It's assumed that you have an Appium server (version 2.x+) installed, and that you have a browser compatible with Chromedriver ready to automate on your system. The recommended installation method is to use the Appium extension CLI to install the driver:
appium driver install chromium
To start an automation session targeting this driver, construct a set of options/capabilities in any WebDriver client that (minimally) includes the following:
Capability | Value |
---|---|
platformName | One of macOS , Linux , or Windows (depending on your system |
browserName | chrome |
appium:automationName | Chromium |
Use these capabilities to start a new session. (Refer to the documentation for your WebDriver client for the particular syntax used to start a session in that client).
At this point, all WebDriver commands are proxied directly to Chromedriver. This driver does not implement any additional commands. Refer to the Chromedriver documentation or the WebDriver specification for a list of the available automation commands.
In addition to all of the Chromedriver
capabilities (nested underneath
goog:chromeOptions
), this driver supports the following:
Capability | Description | Default Value |
---|---|---|
appium:chromedriverPort | The port to start Chromedriver on | 9515 |
appium:executable | The absolute path to a chromedriver binary executable. If set, the driver will use that path instead of its own Chromedriver | |
appium:executableDir | A directory within which is found any number of chromedriver binaries. If set, the driver will search this directory for Chromedrivers of the appropriate version to use for your browser | |
appium:verbose | Set to true to add the --verbose flag when starting Chromedriver | false |
appium:logPath | The path to use with the --log-path parameter directing Chromedriver to write its log to that path, if set | |
appium:disableBuildCheck | Set to true to add the --disable-build-check flag when starting Chromedriver | false |
appium:autodownloadEnabled | Set to false to disable automatic downloading of Chromedrivers | true |
appium:useSystemExecutable | Set to true to use the version of Chromedriver bundled with this driver, rather than attempting to download a new one based on the version of the browser under test | false |
Contributions to this project are welcome! Feel free to submit a PR on GitHub.
To get set up with a working developer environment, clone the project then run:
npm install
To build the code once:
npm run build
To rebuild the code anytime a file is saved:
npm run dev
Before committing any code, please make sure to run:
npm run lint
npm run test:ci
And make sure everything passes!
More developer scripts can be found in package.json
.
FAQs
Appium 2.x driver for Chromium-based browsers that work with Chromedriver
The npm package appium-chromium-driver receives a total of 116,160 weekly downloads. As such, appium-chromium-driver popularity was classified as popular.
We found that appium-chromium-driver demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
Research
Security News
Socket researchers have discovered multiple malicious npm packages targeting Solana private keys, abusing Gmail to exfiltrate the data and drain Solana wallets.
Security News
PEP 770 proposes adding SBOM support to Python packages to improve transparency and catch hidden non-Python dependencies that security tools often miss.