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/testcafe-testing-library/intro.md
+17-9Lines changed: 17 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -5,13 +5,17 @@ title: Testcafe Testing Library
5
5
6
6
## Introduction
7
7
8
-
[`testcafe-testing-library`][gh] allows the use of dom testing library queries within
9
-
[Testcafe](https://devexpress.github.io/testcafe/) for cross-browser end-to-end web
10
-
testing.
8
+
[`testcafe-testing-library`][gh] allows the use of dom testing library queries
9
+
within [Testcafe](https://devexpress.github.io/testcafe/) for cross-browser
10
+
end-to-end web testing.
11
11
12
-
If you are new to the testing-library approach for writing tests, check out the [this guide on which query to use](https://testing-library.com/docs/guide-which-query) as well as the [cheat sheet](https://testing-library.com/docs/dom-testing-library/cheatsheet).
12
+
If you are new to the testing-library approach for writing tests, check out the
13
+
[this guide on which query to use](https://testing-library.com/docs/guide-which-query)
@@ -35,15 +39,19 @@ You can now import & use get[All]By*, query[All]By*, find[All]By\* selectors in
35
39
your tests.
36
40
[See `DOM Testing Library` API for reference](dom-testing-library/api-queries.md)
37
41
38
-
> A note about queries in testcafe. Testcafe has [built in waiting](https://devexpress.github.io/testcafe/documentation/test-api/built-in-waiting-mechanisms.html#wait-mechanism-for-selectors), for this reason, there's no difference between `queryBy` and `findBy` queries in testcafe testing library. `getBy` queries will throw an exception (as designed) so they will fail immediately and do not work with the built in waiting that Testcafe provides.
42
+
> A note about queries in testcafe. Testcafe has
43
+
> [built in waiting](https://devexpress.github.io/testcafe/documentation/test-api/built-in-waiting-mechanisms.html#wait-mechanism-for-selectors),
44
+
> for this reason, there's no difference between `queryBy` and `findBy` queries
45
+
> in testcafe testing library. `getBy` queries will throw an exception (as
46
+
> designed) so they will fail immediately and do not work with the built in
0 commit comments