We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b241177 commit ed1b4b9Copy full SHA for ed1b4b9
README.md
@@ -33,7 +33,8 @@ import { browser } from '@wdio/globals'
33
34
describe('my test suite', () => {
35
it('can call JSONWP commands', async () => {
36
-
+ // call JSONWP command
37
+ await browser.buttonUp()
38
})
39
40
```
@@ -51,7 +52,10 @@ const browser = await remote({ ... })
51
52
const jsonwp = new JSONWPService()
53
jsonwp.before(undefined, undefined, browser)
54
55
+// call JSONWP command
56
await browser.buttonUp()
57
+```
58
+
59
---
60
61
For more information on WebdriverIO see the [homepage](https://webdriver.io).
0 commit comments