mirror of
https://github.com/Hopiu/angular.js.git
synced 2026-05-18 03:21:08 +00:00
docs(guide/e2e-testing): fix verb tense
This commit is contained in:
parent
17c401d09a
commit
67744384e8
1 changed files with 2 additions and 2 deletions
|
|
@ -228,7 +228,7 @@ conditional assertions or element selection. Even though you should generally tr
|
||||||
`element(...).query(fn)`. The following code listing shows how this function can be used to delete
|
`element(...).query(fn)`. The following code listing shows how this function can be used to delete
|
||||||
added entries (where an entry is some domain object) using the application's web interface.
|
added entries (where an entry is some domain object) using the application's web interface.
|
||||||
|
|
||||||
Imagine the application to be structure into two views:
|
Imagine the application to be structured into two views:
|
||||||
|
|
||||||
1. *Overview view* which lists all the added entries in a table and
|
1. *Overview view* which lists all the added entries in a table and
|
||||||
2. a *detail view* which shows the entries' details and contains a delete button. When clicking the
|
2. a *detail view* which shows the entries' details and contains a delete button. When clicking the
|
||||||
|
|
@ -301,4 +301,4 @@ element('.btn-danger').click();
|
||||||
element('table tbody').query(function (tbody, done) { ... });
|
element('table tbody').query(function (tbody, done) { ... });
|
||||||
element('table tbody a');
|
element('table tbody a');
|
||||||
element('.btn-danger').click();
|
element('.btn-danger').click();
|
||||||
</pre>
|
</pre>
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue