* {{> seeNumberOfElements }} *
(locator, num)
| 1853 | * |
| 1854 | */ |
| 1855 | async seeNumberOfElements(locator, num) { |
| 1856 | const elements = await this._locate(locator) |
| 1857 | return equals(`expected number of elements (${new Locator(locator)}) is ${num}, but found ${elements.length}`).assert(elements.length, num) |
| 1858 | } |
| 1859 | |
| 1860 | /** |
| 1861 | * {{> seeNumberOfVisibleElements }} |
no test coverage detected