devtools
Version:
A Chrome DevTools protocol binding that maps WebDriver commands into Chrome DevTools commands using Puppeteer
9 lines • 353 B
TypeScript
import type DevToolsDriver from '../devtoolsdriver.js';
/**
* The Refresh command causes the browser to reload the page in current top-level browsing context.
*
* @alias browser.refresh
* @see https://w3c.github.io/webdriver/#dfn-refresh
*/
export default function refresh(this: DevToolsDriver): Promise<null>;
//# sourceMappingURL=refresh.d.ts.map