aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjoscarsson2013-08-01 12:38:45 +0200
committerBrian Ford2013-09-27 16:24:17 -0700
commit53b444419c5f6a6b69691281c405326d35931fb7 (patch)
treea6e0debd09465d9c2c38f02ee22cd893aa77b991
parent9a21050b436011693e4eb7e3ace1300a1b0fd2d4 (diff)
downloadangular.js-53b444419c5f6a6b69691281c405326d35931fb7.tar.bz2
docs(guide/e2e-testing): select also uses ng-model (like input)
This is specified for input fields, but not for selects. This change specifies it also for select().
-rw-r--r--docs/content/guide/dev_guide.e2e-testing.ngdoc4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/content/guide/dev_guide.e2e-testing.ngdoc b/docs/content/guide/dev_guide.e2e-testing.ngdoc
index 1b110d00..a7631848 100644
--- a/docs/content/guide/dev_guide.e2e-testing.ngdoc
+++ b/docs/content/guide/dev_guide.e2e-testing.ngdoc
@@ -134,10 +134,10 @@ Returns an array with the values in the column with the given `binding` in the r
the given jQuery `selector`. The `label` is used for test output.
## select(name).option(value)
-Picks the option with the given `value` on the select with the given `name`.
+Picks the option with the given `value` on the select with the given ng-model `name`.
## select(name).options(value1, value2...)
-Picks the options with the given `values` on the multi select with the given `name`.
+Picks the options with the given `values` on the multi select with the given ng-model `name`.
## element(selector, label).count()
Returns the number of elements that match the given jQuery `selector`. The `label` is used for test