cabbie-sync
Version:
A synchronous webdriver client
34 lines (30 loc) • 778 B
Flow
/**
* @flow
* This file is generated automatically, run npm run build to re-generate.
**/
import type Driver from './driver';
import type ActiveWindow from './active-window';
import addDebugging from './add-debugging';
import BaseWindow from './base-window';
/*
* Window object
*/
class WindowHandle extends BaseWindow {
/*
* The internal selenium id
*/
id: string;
constructor(driver: Driver, id: string) {
super(driver, id);
this.id = id;
}
/*
* Shift the focus to this window (after calling this, browser.activeWindow refers to this window)
*/
activate(): ActiveWindow {
this.driver.requestJSON('POST', '/window', { name: this.id });
return this.driver.activeWindow;
}
}
addDebugging(WindowHandle);
export default WindowHandle;