(t *testing.T, c config)
| 747 | } |
| 748 | |
| 749 | func testSetPageLoadTimeout(t *testing.T, c config) { |
| 750 | wd := newRemote(t, c) |
| 751 | defer quitRemote(t, wd) |
| 752 | |
| 753 | if err := wd.SetPageLoadTimeout(200); err != nil { |
| 754 | t.Fatal(err) |
| 755 | } |
| 756 | } |
| 757 | |
| 758 | func testWindows(t *testing.T, c config) { |
| 759 | wd := newRemote(t, c) |
nothing calls this directly
no test coverage detected
searching dependent graphs…