Skip to content

Commit 1c1fb7c

Browse files
updated links (#95)
1 parent 5de4924 commit 1c1fb7c

File tree

8 files changed

+15
-15
lines changed

8 files changed

+15
-15
lines changed

versioned_docs/version-1x/Steps/playwright.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Playwright steps provide a couple of additional configuration properties
1414
| Name | Type | Description | Default |
1515
|--------------|----------|---------------------------------------------------------------------------------|---------|
1616
| `browser` | `object` | object describing playwright config | `{}` |
17-
| `pageObject` | `object` | instance of page object definitions [(page object)](../../../docs/Guides/page-object-v1.mdx) | `{}` |
17+
| `pageObject` | `object` | instance of page object definitions [(page object)](Guides/page-object.mdx) | `{}` |
1818

1919
```javascript
2020
const App = require('./page_object');

versioned_docs/version-1x/Steps/wdio.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ wdio steps provide additional configuration properties
1414
| Name | Type | Description | Default |
1515
|--------------|----------|---------------------------------------------------------------------------------|---------|
1616
| `browser` | `object` | object describing wdio config | `{}` |
17-
| `pageObject` | `object` | instance of page object definitions [(page object)](../../../docs/Guides/page-object-v1.mdx) | `{}` |
17+
| `pageObject` | `object` | instance of page object definitions [(page object)](Guides/page-object.mdx) | `{}` |
1818

1919
```javascript
2020
const App = require('./page_object');

versioned_docs/version-1x/intro.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ Feature: Wikipedia
3737
| Java |
3838
```
3939
It is worth mentioning the expression **'$wikipediaUrl'** in the example above starting with '**\$**' interpreted as a **qavajs** memory variable whose value is taken from the Memory class instance in runtime. [More details](https://qavajs.github.io/docs/Guides/memory).
40-
Another feature is a locator alias expression like **'Wikipedia > Search Input'** separated by the '**\>**' sign that describes hierarchic page structure. See how [to organize your page object](https://qavajs.github.io/docs/Guides/page-object-v2).
40+
Another feature is a locator alias expression like **'Wikipedia > Search Input'** separated by the '**\>**' sign that describes hierarchic page structure. See how [to organize your page object](Guides/page-object).
4141

4242
### 🛠️ Configuration
4343
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.

versioned_docs/version-2x/Steps/playwright.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ npm install @qavajs/steps-playwright@2
1313
## Configuration
1414
Playwright steps provide a couple of additional configuration properties
1515

16-
| Name | Type | Description | Default |
17-
|--------------|----------|------------------------------------------------------------------------------------|---------|
18-
| `browser` | `object` | object describing playwright config | `{}` |
19-
| `pageObject` | `object` | instance of page object definitions [(page object)](../Guides/page-object-v2.mdx) | `{}` |
16+
| Name | Type | Description | Default |
17+
|--------------|----------|------------------------------------------------------------------------------|---------|
18+
| `browser` | `object` | object describing playwright config | `{}` |
19+
| `pageObject` | `object` | instance of page object definitions [(page object)](Guides/page-object.mdx) | `{}` |
2020

2121
```typescript
2222
import App from './page_object';

versioned_docs/version-2x/Steps/wdio.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ npm install @qavajs/steps-wdio
1212
## Configuration
1313
wdio steps provide additional configuration properties
1414

15-
| Name | Type | Description | Default |
16-
|--------------|----------|------------------------------------------------------------------------------------|---------|
17-
| `browser` | `object` | object describing wdio config | `{}` |
18-
| `pageObject` | `object` | instance of page object definitions [(page object)](../Guides/page-object-v2.mdx) | `{}` |
15+
| Name | Type | Description | Default |
16+
|--------------|----------|------------------------------------------------------------------------------|---------|
17+
| `browser` | `object` | object describing wdio config | `{}` |
18+
| `pageObject` | `object` | instance of page object definitions [(page object)](Guides/page-object.mdx) | `{}` |
1919

2020
```typescript
2121
import App from './page_object';

versioned_docs/version-2x/intro.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ Feature: Wikipedia
3737
| Java |
3838
```
3939
It is worth mentioning the expression **'$wikipediaUrl'** in the example above starting with '**\$**' interpreted as a **qavajs** memory variable whose value is taken from the Memory class instance in runtime. [More details](https://qavajs.github.io/docs/Guides/memory).
40-
Another feature is a locator alias expression like **'Wikipedia > Search Input'** separated by the '**\>**' sign that describes hierarchic page structure. See how [to organize your page object](https://qavajs.github.io/docs/Guides/page-object-v2).
40+
Another feature is a locator alias expression like **'Wikipedia > Search Input'** separated by the '**\>**' sign that describes hierarchic page structure. See how [to organize your page object](Guides/page-object).
4141

4242
### 🛠️ Configuration
4343
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.

versioned_docs/version-2x/qna.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ qavajs uses [Gherkin](https://cucumber.io/docs/gherkin/reference) to describe te
2323
and JavaScript/TypeScript to define support code (test data, project specific step definitions, etc)
2424

2525
## Can mobile applications be tested with qavajs?
26-
Yes, qavajs can work on top of [webdriverio](Steps/wdio-v2.md) and use appium to run tests on mobile devices.
26+
Yes, qavajs can work on top of [webdriverio](Steps/wdio.md) and use appium to run tests on mobile devices.
2727

2828
## Can API be tested with qavajs?
29-
Yes, you can use [API steps](Steps/api-v2.md) to interact with REST, graphQL and websocket services.
29+
Yes, you can use [API steps](Steps/api.md) to interact with REST, graphQL and websocket services.
3030

3131
## Can I integrate qavajs into my CI workflow?
3232
Yes. qavajs is Node.js application so can be executed on any agent where Node.js installed.

versioned_docs/version-2x/writing-tests.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Feature: Wikipedia
2222

2323
In this scenario:
2424

25-
- `Search Input`, `Search Button`, and `Title` are aliases for corresponding [page objects](./Guides/page-object-v2.mdx).
25+
- `Search Input`, `Search Button`, and `Title` are aliases for corresponding [page objects](Guides/page-object.mdx).
2626
- `$wikipedia` is an alias for a [constant](./Guides/memory.md) URL.
2727

2828
## Page Objects

0 commit comments

Comments
 (0)