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/changelog.md
+49-2
Original file line number
Diff line number
Diff line change
@@ -7,6 +7,53 @@ layout: Section
7
7
8
8
# Releases
9
9
10
+
## 3.4.0
11
+
12
+
***Updated to latest mocha and modern Cucumber**
13
+
***Allure plugin moved to [@codeceptjs/allure-legacy](https://github.com/codeceptjs/allure-legacy) package**. This happened because allure-commons package v1 was not updated and caused vulnarabilities. Fixes [#3422](https://github.com/codeceptjs/CodeceptJS/issues/3422). We don't plan to maintain allure v2 plugin so it's up to community to take this initiative. Current allure plugin will print a warning message without interfering the run, so it won't accidentally fail your builds.
14
+
* Added ability to **[retry Before](https://codecept.io/basics/#retry-before), BeforeSuite, After, AfterSuite** hooks by **[davertmik](https://github.com/davertmik)**:
15
+
```js
16
+
Feature('flaky Before & BeforeSuite', { retryBefore:2, retryBeforeSuite:3 })
17
+
```
18
+
19
+
***Flexible [retries configuration](https://codecept.io/basics/#retry-configuration) introduced** by **[davertmik](https://github.com/davertmik)**:
20
+
21
+
```js
22
+
retry: [
23
+
{
24
+
// enable this config only for flaky tests
25
+
grep:'@flaky',
26
+
Before:3// retry Before 3 times
27
+
Scenario:3// retry Scenario 3 times
28
+
},
29
+
{
30
+
// retry less when running slow tests
31
+
grep:'@slow'
32
+
Scenario:1
33
+
Before:1
34
+
}, {
35
+
// retry all BeforeSuite 3 times
36
+
BeforeSuite:3
37
+
}
38
+
]
39
+
```
40
+
***Flexible [timeout configuration](https://codecept.io/advanced/#timeout-configuration)** introduced by **[davertmik](https://github.com/davertmik)**:
41
+
42
+
```js
43
+
timeout: [
44
+
10, // default timeout is 10secs
45
+
{ // but increase timeout for slow tests
46
+
grep:'@slow',
47
+
Feature:50
48
+
},
49
+
]
50
+
```
51
+
52
+
* JsDoc: Removed promise from `I.say`. See [#3535](https://github.com/codeceptjs/CodeceptJS/issues/3535) by **[danielrentz](https://github.com/danielrentz)**
53
+
***[Playwright]**`handleDownloads` requires now a filename param. See [#3511](https://github.com/codeceptjs/CodeceptJS/issues/3511) by **[PeterNgTr](https://github.com/PeterNgTr)**
54
+
***[WebDriver]** Added support for v8, removed support for webdriverio v5 and lower. See [#3578](https://github.com/codeceptjs/CodeceptJS/issues/3578) by **[PeterNgTr](https://github.com/PeterNgTr)**
55
+
56
+
10
57
## 3.3.7
11
58
12
59
🛩️ Features
@@ -37,8 +84,8 @@ layout: Section
37
84
38
85
📖 Documentation
39
86
40
-
* Updated [Auickstart](https://codecept.io/quickstart/) with detailed explanation of questions in init
41
-
* Added [Translation](/translations/) guide
87
+
* Updated [Quickstart](https://codecept.io/quickstart/) with detailed explanation of questions in init
88
+
* Added [Translation](/translation/) guide
42
89
* Updated [TypeScript](https://bit.ly/3XIMq6n) guide for promise-based typings
Copy file name to clipboardexpand all lines: docs/tutorial.md
+4-4
Original file line number
Diff line number
Diff line change
@@ -1,11 +1,11 @@
1
1
---
2
2
permalink: /tutorial
3
-
title: CodeceptJS Testing Tutorial: Create a Complete Test Suite
3
+
title: CoeceptJS Complete Tutorial
4
4
---
5
5
6
-
**[CodeceptJS](https://codecept.io) is a popular open-source testing framework**for JavaScript. It is designed to simplify writing and maintain end-to-end tests for web applications, using a readable and intuitive syntax. To run tests in browser it uses **[Playwright](https://playwright.dev)** library from Microsoft.
6
+
# Tutorial: Writing Tests for Checkout Page
7
7
8
-
CodeceptJS was started in 2015 and is widely used by organizations of all sizes, from startups to large enterprises.
8
+
**[CodeceptJS](https://codecept.io) is a popular open-source testing framework** for JavaScript. It is designed to simplify writing and maintain end-to-end tests for web applications, using a readable and intuitive syntax. To run tests in browser it uses **[Playwright](https://playwright.dev)** by default but ca execute tests via WebDriver, Puppeteer or Appium.
9
9
10
10
## Let's get CodeceptJS installed!
11
11
@@ -266,6 +266,6 @@ By applying more and more cases you can test a website to all behaviors.
266
266
267
267
## Summary
268
268
269
-
This was a deep dive! If you think on just starting test automation, CodeceptJS is the best choice for you as it uses native language to pass commands to browser.
269
+
If you think on just starting test automation, CodeceptJS is the best choice for you as it uses native language to pass commands to browser.
270
270
271
271
If you already skilled in JavaScript, with CodeceptJS you can focus on business level of your test, instead of writing code for browser. This way you can keep your tests stable and maintainable.
0 commit comments