Home | History | Annotate | Download | only in page

Lines Matching full:browser

18   hardware configuration, or browser.
23 """PageTest Exception raised after browser or tab crash for multi-tab tests.
63 Multi-tab tests do not retry after tab or browser crashes, whereas,
71 """When set to True, the browser's disk and memory cache will be cleared
86 """ Should the browser be restarted for the page?
89 browser for each page. It may be called before the browser is started.
93 def StopBrowserAfterPage(self, browser, page):
94 """Should the browser be stopped after the page is run?
96 This is called after a page is run to decide whether the browser needs to
100 A test that overrides this can look at both the page and the browser to
101 decide whether it needs to stop the browser.
103 del browser, page # unused
110 """Override to manipulate the browser environment before it launches."""
112 def DidStartBrowser(self, browser):
113 """Override to customize the browser right after it has launched."""
121 will already have performed the following operations on the browser before
133 def TabForPage(self, page, browser): # pylint: disable=unused-argument
135 create a new tab for every page, return browser.tabs.New()."""
137 return browser.tabs[0]
142 browser.tabs.New()
145 browser.tabs[0].WaitForDocumentReadyStateToBeComplete()
146 return browser.tabs[0]