Socket
Socket
Sign inDemoInstall

@rpii/wdio-commands

Package Overview
Dependencies
20
Maintainers
1
Versions
32
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @rpii/wdio-commands

Add task based commands to simplify the webdriverio api,compatible with v7


Version published
Weekly downloads
226
increased by15.31%
Maintainers
1
Install size
0.999 MB
Created
Weekly downloads
 

Readme

Source

@rpii/wdio-commands

##Newest Features: Updated for module compatibility with webdriver 8

Update to async mode in webdriverio 
    -- may get some tsc warnings
Update typescript types for webdriverio 7.25
Remove moment.js

Usage

Typescript package which provides aggregated webdriver.io commands to perform complex actions This package adds the following commands to the WebDriverIO Element:

            setCheckBox: (state: boolean) => Element;
            isDisplayedWithin: (timeout: undefined | number) => boolean;
            waitForExistAndClick: (timeout: undefined | number) => Element;
            waitForDisplayedAndClick: (timeout: undefined | number) => Element;
            waitForExistAndSetValue: (value: string, timeout: undefined | number) => Element;
            waitForExistAndSelectByValue: (value: string, timeout: undefined | number) => Element;
            waitForDisplayedAndSetValue: (timeout: undefined | number) => Element;
            waitForNotExist: (timeout: undefined | number) => Element;
            waitForNotDisplayed: (timeout: undefined | number) => Element;
            waitUntilTextBecomes(text:string|RegExp , timeout?: number| undefined): boolean

to use add to wdio.conf.js:

import commands from "@rpii/wdio-commands" ;

add to the before hook:

commands.addCommands(browser) ;

###Sample

in a page object:

    $("//button[@id='submit-button']").waitForVisibleAndClick(2000) ;

The default Wait Time is 10 seconds if the timeout is omitted

Keywords

FAQs

Last updated on 08 Jan 2023

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc