This repository was archived by the owner on Jul 29, 2024. It is now read-only.
File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -320,11 +320,11 @@ function byRepeaterInner(exact) {
320
320
*
321
321
* // Returns the SPAN for the first cat's name.
322
322
* var firstCatName = element(by.repeater('cat in pets').
323
- * row(0).column('{{ cat.name}} '));
323
+ * row(0).column('cat.name'));
324
324
*
325
325
* // Returns a promise that resolves to an array of WebElements from a column
326
326
* var ages = element.all(
327
- * by.repeater('cat in pets').column('{{ cat.age}} '));
327
+ * by.repeater('cat in pets').column('cat.age'));
328
328
*
329
329
* // Returns a promise that resolves to an array of WebElements containing
330
330
* // all top level elements repeated by the repeater. For 2 pets rows resolves
@@ -341,7 +341,7 @@ function byRepeaterInner(exact) {
341
341
*
342
342
* // Returns the H4 for the first book's name.
343
343
* var firstBookName = element(by.repeater('book in library').
344
- * row(0).column('{{ book.name}} '));
344
+ * row(0).column('book.name'));
345
345
*
346
346
* // Returns a promise that resolves to an array of WebElements containing
347
347
* // all top level elements repeated by the repeater. For 2 books divs
You can’t perform that action at this time.
0 commit comments