()
| 660 | }) |
| 661 | |
| 662 | async function submitForm() { |
| 663 | await browser.elementById('name').type('foo') |
| 664 | await browser.elementById('submit').click() |
| 665 | await retry(async () => { |
| 666 | expect(await browser.url()).toContain('/header') |
| 667 | }) |
| 668 | } |
| 669 | |
| 670 | await submitForm() |
| 671 |
no test coverage detected