You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 5, 2020. It is now read-only.
Copy file name to clipboardExpand all lines: README.md
+4-2Lines changed: 4 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,6 +9,8 @@ A set of Mobify specific custom commands for Nightwatch.js
9
9
To begin, clone this repository. `cd` into your chosen folder, and run the following:
10
10
`npm install`
11
11
12
+
Selenium server and Chromedriver will also be downloaded into `/selenium`.
13
+
12
14
### Linting
13
15
JavaScript in this tool is linted with [ESLint](http://eslint.org/) according to our code [syntax and style standards](https://github.com/mobify/mobify-code-style) here at Mobify.
14
16
@@ -257,7 +259,7 @@ callback | Function | _optional_ A function to call after the curren
257
259
258
260
```
259
261
this.demoTest = function (browser) {
260
-
browser.trigger('.myLink', click);
262
+
browser.trigger('.myLink', 'click');
261
263
};
262
264
```
263
265
@@ -273,7 +275,7 @@ callback | Function | _optional_ A function to call after the curren
0 commit comments