testcafe 2.3.1-rc.2 → 2.3.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/CHANGELOG.md +15 -1
  2. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,15 @@
1
1
  # Changelog
2
2
 
3
+ ## v2.3.1 (2023-02-09)
4
+ TestCafe v2.3.1 introduces a number of bug fixes.
5
+
6
+ ### Bug Fixes
7
+
8
+ * Client-side code with optional chaining may trigger a TestCafe error ([#7387](https://github.com/DevExpress/testcafe/issues/7387)).
9
+ * TestCafe cannot interact with images from the Shadow DOM ([#7454](https://github.com/DevExpress/testcafe/issues/7454)).
10
+ * TestCafe v2.3.0 fails to launch when the `test.meta` method precedes test code ([#7482](https://github.com/DevExpress/testcafe/issues/7482)).
11
+ * When TestCafe launches a headless instance of Google Chrome in proxyless mode, it cannot interact with elements that are overlapped by the status bar ([#7483](https://github.com/DevExpress/testcafe/issues/7483)).
12
+
3
13
  ## v2.3.0 (2023-01-30)
4
14
 
5
15
  TestCafe v2.3.0 introduces `create-testcafe` --- an interactive tool that allows you to initialize a new TestCafe project in seconds. The update also includes *experimental* ECMAScript module support and a number of bug fixes.
@@ -22,6 +32,8 @@ Execute the following command to launch `create-testcafe`:
22
32
  npx create-testcafe
23
33
  ```
24
34
 
35
+ ![example](https://testcafe.io/images/create-testcafe/wizard.gif)
36
+
25
37
  The `create-testcafe` tool allows you to perform the following actions with a single command:
26
38
 
27
39
  1. Create a new folder for the TestCafe project *(optional)*.
@@ -31,6 +43,8 @@ The `create-testcafe` tool allows you to perform the following actions with a si
31
43
  5. Populate the test folder with test examples *(optional)*.
32
44
  6. Create a YAML file with a GitLab Actions workflow that runs TestCafe tests *(optional)*.
33
45
 
46
+ Read the [TestCafe Setup Wizard guide](https://testcafe.io/documentation/404259/guides/best-practices/create-testcafe) for more information on the create-testcafe tool.
47
+
34
48
  ### Experimental: ECMAScript module support
35
49
 
36
50
  > **_IMPORTANT:_**
@@ -48,7 +62,7 @@ An increasing number of Node.JS packages abandon CommonJS in favour of [ECMAScri
48
62
  import {x} from 'y'
49
63
  ```
50
64
 
51
- Enable the `--experimental-esm` [CLI flag](xref:402639#--experimental-esm) to import modules that do not support CommonJS. Note: tests with ECMASCript module syntax are subject to [additional requirements](#additional-reuqirements).
65
+ Enable the `--experimental-esm` [CLI flag](https://testcafe.io/documentation/402639/reference/command-line-interface#--experimental-esm) to import modules that do not support CommonJS. Note: tests with ECMASCript module syntax are subject to [additional requirements](https://testcafe.io/404257/release-notes/framework/2023-1-30-testcafe-v2-3-0-released#additional-reuqirements).
52
66
 
53
67
  ```sh
54
68
  testcafe chrome test.js --experimental-esm
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "testcafe",
3
3
  "description": "Automated browser testing for the modern web development stack.",
4
4
  "license": "MIT",
5
- "version": "2.3.1-rc.2",
5
+ "version": "2.3.1",
6
6
  "author": {
7
7
  "name": "Developer Express Inc.",
8
8
  "url": "https://www.devexpress.com/"