Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
miherlosev authored Jun 21, 2023
1 parent 682ea26 commit ff70ebf
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions README.md
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.

Expand All @@ -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.).

Expand All @@ -44,4 +47,4 @@ fixture `App tests`
test('test', async t => {
const firstListItem = AngularSelector('list list-item');
});
```
```

0 comments on commit ff70ebf

Please sign in to comment.