(t *testing.T, c config)
| 738 | } |
| 739 | |
| 740 | func testSetImplicitWaitTimeout(t *testing.T, c config) { |
| 741 | wd := newRemote(t, c) |
| 742 | defer quitRemote(t, wd) |
| 743 | |
| 744 | if err := wd.SetImplicitWaitTimeout(200); err != nil { |
| 745 | t.Fatal(err) |
| 746 | } |
| 747 | } |
| 748 | |
| 749 | func testSetPageLoadTimeout(t *testing.T, c config) { |
| 750 | wd := newRemote(t, c) |
nothing calls this directly
no test coverage detected
searching dependent graphs…