testcafe 2.4.0-rc.1 → 2.4.0
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.
- package/CHANGELOG.md +25 -0
- package/README.md +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,30 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## v2.4.0 (2023-03-06)
|
|
4
|
+
TestCafe v2.4.0 introduces the Visual Selector Debugger. You can now create and debug Selector queries in the browser window.
|
|
5
|
+
|
|
6
|
+
### Visual Selector Debugger
|
|
7
|
+
|
|
8
|
+
TestCafe v2.4.0 displays the Visual Selector Debugger panel when you activate [Debug Mode](https://testcafe.io/documentation/402835/guides/basic-guides/debug-tests). Use the panel to debug Selector queries from your test, or generate new Selector queries.
|
|
9
|
+
|
|
10
|
+

|
|
11
|
+
|
|
12
|
+
If a Selector query causes your test to fail, add the [t.debug()](https://testcafe.io/documentation/402707/reference/test-api/testcontroller/debug) command after the last successful action, and launch the test.
|
|
13
|
+
|
|
14
|
+
When the test reaches the breakpoint, the window that runs the test displays the Selector Debugger panel. Copy the failing Selector query from test code to the Selector Debugger input field.
|
|
15
|
+
|
|
16
|
+
* TestCafe highlights page elements that match the Selector query.
|
|
17
|
+
* If no elements match the Selector query, the panel displays the **No Matching Elements** warning.
|
|
18
|
+
* If your Selector query contians a syntax error, the panel displays the **Invalid Selector** warning.
|
|
19
|
+
|
|
20
|
+
To interactively generate a Selector query, click the **Pick** button, and select the target element on the page.
|
|
21
|
+
|
|
22
|
+
For more information on the panel, its capabilities, and limitations, read the [Visual Selector Debugger Guide](https://testcafe.io/documentation/404288/guides/intermediate-guides/visual-selector-debugger).
|
|
23
|
+
|
|
24
|
+
### Bug Fixes
|
|
25
|
+
|
|
26
|
+
* TestCafe cannot execute the [t.request](https://testcafe.io/documentation/403981/reference/test-api/testcontroller/request) action in [proxyless mode](https://testcafe.io/documentation/404237/guides/experimental-capabilities/proxyless-mode) ([#7523](https://github.com/DevExpress/testcafe/issues/7523)).
|
|
27
|
+
|
|
3
28
|
## v2.3.1 (2023-02-09)
|
|
4
29
|
TestCafe v2.3.1 introduces a number of bug fixes.
|
|
5
30
|
|
package/README.md
CHANGED
|
@@ -166,7 +166,7 @@ Visit the following webpage to review our online help system: [Documentation](ht
|
|
|
166
166
|
|
|
167
167
|
## Get Help
|
|
168
168
|
|
|
169
|
-
Join the TestCafe community on Stack Overflow. Ask and answer questions [
|
|
169
|
+
Join the TestCafe community on Stack Overflow. Ask and answer questions [using the TestCafe tag](https://stackoverflow.com/questions/tagged/testcafe).
|
|
170
170
|
|
|
171
171
|
## Issue Tracker
|
|
172
172
|
|
package/package.json
CHANGED