Gathering detailed insights and metrics for @rpai/webdriverio
Gathering detailed insights and metrics for @rpai/webdriverio
Gathering detailed insights and metrics for @rpai/webdriverio
Gathering detailed insights and metrics for @rpai/webdriverio
@rpai/wdio-utils
A WDIO helper utility to provide several utility functions used across the project.
@rpai/wdio-logger
A helper utility for logging of WebdriverIO packages
@rpai/wdio-config
A helper utility to parse and validate WebdriverIO options
@rpai/wdio-types
Utility package providing type information for a variety of WebdriverIO interfaces
Next-gen browser and mobile automation test framework for Node.js
npm install @rpai/webdriverio
Typescript
Module System
Min. Node Version
Node Version
NPM Version
TypeScript (94.25%)
JavaScript (3.6%)
EJS (1.37%)
CSS (0.67%)
Gherkin (0.07%)
Dockerfile (0.03%)
Vue (0.01%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
9,539 Stars
8,054 Commits
2,600 Forks
213 Watchers
32 Branches
652 Contributors
Updated on Jul 13, 2025
Latest Version
1.0.5
Package Id
@rpai/webdriverio@1.0.5
Unpacked Size
1.22 MB
Size
239.03 kB
File Count
556
NPM Version
10.7.0
Node Version
20.15.0
Published on
Sep 27, 2024
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
24
1
Next-gen browser and mobile automation test framework for Node.js
This package provides an easy-to-manage API and a lot of syntactical sugar on top of the WebDriver specification. You can use WebdriverIO as a standalone package or via a test runner using @wdio/cli
. WebdriverIO allows you to run tests locally using the WebDriver or Chrome DevTools protocol as well as remote user agents using cloud providers like Sauce Labs.
You can install WebdriverIO via NPM:
1npm install webdriverio
WebdriverIO by default uses Puppeteer to automate a browser like Chrome, Firefox or Chromium Edge. So if you have Chrome installed, the following script should start a browser for you and get the title of the page:
1import { remote } from 'webdriverio' 2 3const browser = await remote({ 4 capabilities: { browserName: 'chrome' } 5}) 6 7await browser.navigateTo('https://www.google.com/ncr') 8 9const searchInput = await browser.$('#lst-ib') 10await searchInput.setValue('WebdriverIO') 11 12const searchBtn = await browser.$('input[value="Google Search"]') 13await searchBtn.click() 14 15console.log(await browser.getTitle()) // outputs "WebdriverIO - Google Search" 16 17await browser.deleteSession()
See the raw protocol example using the webdriver
package to get a glance at the differences.
For more information on options, multiremote usage or integration into cloud services please check out the docs.
No vulnerabilities found.
Reason
security policy file detected
Details
Reason
no dangerous workflow patterns detected
Reason
30 commit(s) and 25 issue activity found in the last 90 days -- score normalized to 10
Reason
license file detected
Details
Reason
binaries present in source code
Details
Reason
dependency not pinned by hash detected -- score normalized to 6
Details
Reason
Found 14/27 approved changesets -- score normalized to 5
Reason
badge detected: Passing
Reason
SAST tool is not run on all commits -- score normalized to 2
Details
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
project is not fuzzed
Details
Reason
25 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-07-07
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More