Skip to content

Commit e70c0eb

Browse files
author
DavertMik
committed
synchronized with docs
1 parent 7724b81 commit e70c0eb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/changelog.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ This release introduces major new features and internal refactoring. It is an im
1515

1616
### 🔥 **Native Element Functions**
1717

18-
A new [Els API](./els) for direct element interactions has been introduced. This API provides low-level element manipulation functions for more granular control over element interactions and assertions:
18+
A new [Els API](/els) for direct element interactions has been introduced. This API provides low-level element manipulation functions for more granular control over element interactions and assertions:
1919

2020
- `element()` - perform custom operations on first matching element
2121
- `eachElement()` - iterate and perform operations on each matching element
@@ -54,11 +54,11 @@ Scenario('element functions demo', async ({ I }) => {
5454
})
5555
```
5656

57-
[Els](./els) functions expose the native API of Playwright, WebDriver, and Puppeteer helpers. The actual `el` API will differ depending on which helper is used, which affects test code interoperability.
57+
[Els](/els) functions expose the native API of Playwright, WebDriver, and Puppeteer helpers. The actual `el` API will differ depending on which helper is used, which affects test code interoperability.
5858

5959
### 🔮 **Effects introduced**
6060

61-
[Effects](./effects) is a new concept that encompasses all functions that can modify scenario flow. These functions are now part of a single module. Previously, they were used via plugins like `tryTo` and `retryTo`. Now, it is recommended to import them directly:
61+
[Effects](/effects) is a new concept that encompasses all functions that can modify scenario flow. These functions are now part of a single module. Previously, they were used via plugins like `tryTo` and `retryTo`. Now, it is recommended to import them directly:
6262

6363
```js
6464
const { tryTo, retryTo } = require('codeceptjs/effects')

0 commit comments

Comments
 (0)