(expectedCount: string)
| 324 | } |
| 325 | |
| 326 | async checkCount(expectedCount: string) { |
| 327 | console.log(`Checking the count is ${expectedCount}`); |
| 328 | await this.driver.waitForSelector({ |
| 329 | tag: 'p', |
| 330 | text: expectedCount, |
| 331 | }); |
| 332 | } |
| 333 | |
| 334 | /** |
| 335 | * Select an entropy source from the dropdown with the given name. |
no test coverage detected