* {{> grabValueFromAll }}
(locator)
| 2013 | * {{> grabValueFromAll }} |
| 2014 | */ |
| 2015 | async grabValueFromAll(locator) { |
| 2016 | const els = await findFields.call(this, locator) |
| 2017 | const values = [] |
| 2018 | for (const el of els) { |
| 2019 | values.push(await (await el.getProperty('value')).jsonValue()) |
| 2020 | } |
| 2021 | return values |
| 2022 | } |
| 2023 | |
| 2024 | /** |
| 2025 | * {{> grabValueFrom }} |
no test coverage detected