-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
682ea26
commit ff70ebf
Showing
1 changed file
with
8 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,18 @@ | ||
# testcafe-angular-selectors | ||
# DEPREDCATED | ||
The TestCafe team no longer maintains the `testcafe-angular-selectors` repository. If you want to take over the project, we'll be happy to hand it over. To contact the team, create a new GitHub issue or email [email protected]. | ||
|
||
## testcafe-angular-selectors | ||
|
||
This plugin provides [Selector](https://devexpress.github.io/testcafe/documentation/test-api/selecting-page-elements/selectors.html) extensions that make it easier to test Angular applications with [TestCafe](https://github.com/DevExpress/testcafe/). | ||
These extensions allow you to create a `Selector` to find elements on the page in a way that is native to Angular applications. | ||
|
||
## Install | ||
### Install | ||
|
||
```sh | ||
npm install testcafe-angular-selectors | ||
``` | ||
|
||
## Usage | ||
### Usage | ||
|
||
This module includes separate helpers for Angular and AngularJS applications. | ||
|
||
|
@@ -18,7 +21,7 @@ See the following topics for more details: | |
* [Angular Selector extentions](./angular-selector.md) | ||
* [AngularJS Selector extentions](./angularJS-selector.md) | ||
|
||
## Examples | ||
### Examples | ||
|
||
For AngularJS applications, you need to use `AngularJSSelector` that contains a set of static methods to search by the specified bindings (`byModel`, `byBinding` and etc.). | ||
|
||
|
@@ -44,4 +47,4 @@ fixture `App tests` | |
test('test', async t => { | ||
const firstListItem = AngularSelector('list list-item'); | ||
}); | ||
``` | ||
``` |