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
Copy file name to clipboardExpand all lines: docs/introduction/command-line-runner.md
+29-1Lines changed: 29 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,7 @@ You can now run all of your Selenium IDE tests on any browser, in parallel, and
8
8
9
9
There's just the small matter of installing the Selenium IDE command line runner, getting the necessary browser drivers (if running your tests locally), and launching the runner from a command prompt with the options you want.
If you need to export test results to a file (when running as part of a CI process for example), you can use a combination `--output-directory` and `--output-format`.
150
+
151
+
`--output-directory` defines if and where to put the test result files.
152
+
153
+
`--output-format` defines which format use for the test result file, it can be `jest` or `junit`. The default if format is not specified is `jest`
154
+
155
+
#### Examples
156
+
157
+
```sh
158
+
selenium-side-runner --output-directory=results
159
+
```
160
+
161
+
Will output results in `jest` frormat in `./results/projectName.json'
Will output results in `junit` frormat in `./results/projectName.xml'
174
+
147
175
## A framework at your fingertips
148
176
149
177
There are also other niceties that come out of the box with the runner. Things you would expect to be available in a traditional test automation framework.
0 commit comments