* Returns a list of all options belonging to this select tag * @returns {!Promise<!Array<!WebElement>>}
()
| 307 | * @returns {!Promise<!Array<!WebElement>>} |
| 308 | */ |
| 309 | async getOptions() { |
| 310 | return await this.element.findElements({ tagName: 'option' }) |
| 311 | } |
| 312 | |
| 313 | /** |
| 314 | * Returns a boolean value if the select tag is multiple |
no test coverage detected