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: versioned_docs/version-2x/intro.md
+14-4Lines changed: 14 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -43,9 +43,19 @@ Another feature is a locator alias expression like **'Wikipedia > Search Input'*
43
43
In addition to the default features of Cucumber [config file](https://github.com/cucumber/cucumber-js/blob/main/docs/configuration.md#options) the **qavajs** config implements following [capabilities](https://github.com/qavajs/core/blob/main/src/IQavajsConfig.ts) to provide the advanced flexibility.
44
44
45
45
### Test execution
46
-
If you have the basic config `npx qavajs` will launch test execution.
47
-
To specify custom path to the config file use `npx qavajs run --config <config>`.
48
-
In case if your config exports an object with multiple properties, you can specify which property to read `npx qavajs run --profile <profile>`.
46
+
If you have the basic config
47
+
```bash
48
+
npx qavajs
49
+
```
50
+
will launch test execution.
51
+
To specify custom path to the config file use
52
+
```bash
53
+
npx qavajs run --config <config>
54
+
```
55
+
In case if your config exports an object with multiple properties, you can specify which property to read
56
+
```bash
57
+
npx qavajs run --profile <profile>
58
+
```
49
59
50
60
### Page object
51
61
[Page object guide](./Guides/page-object.mdx)
@@ -104,7 +114,7 @@ Feature: Feature
104
114
qavajs provides ability to shard your tests between different machines. To do so pass `--shard x/y` parameter in CLI,
105
115
where x - current shard, y - total number of shards.
0 commit comments