8.0.2 • Published 1 year ago

@rpii/wdio-commands v8.0.2

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

@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

8.0.0-beta

1 year ago

8.0.0

1 year ago

8.0.2

1 year ago

7.1.0-beta

1 year ago

7.1.0

1 year ago

7.1.0-beta2

1 year ago

7.0.4

3 years ago

7.0.3

3 years ago

7.0.2

3 years ago

7.0.1

3 years ago

7.0.0

3 years ago

6.0.7

4 years ago

6.0.6

4 years ago

6.0.4

4 years ago

6.0.3

4 years ago

6.0.1

4 years ago

6.0.0

4 years ago

6.0.2

4 years ago

0.2.3

4 years ago

0.2.1

4 years ago

0.2.2

4 years ago

0.2.0

4 years ago

0.1.9

4 years ago

0.1.8

4 years ago

0.1.7

4 years ago

0.1.6

4 years ago

0.1.5

4 years ago

0.1.4

4 years ago

0.1.3

4 years ago

0.1.2

4 years ago

0.1.1

4 years ago

0.1.0

4 years ago