UNPKG

chrec-core

Version:

ChRec's core business logic and model for testing HTML locator robustness

14 lines (13 loc) 594 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const selenium_webdriver_1 = require("selenium-webdriver"); const browser_1 = require("../browser"); class InternetExplorer extends browser_1.Browser { constructor(name, width, height, sleepMsBetweenActions, id) { super(name, width, height, sleepMsBetweenActions, id); } getBuilder(seleniumServerUrl) { return new selenium_webdriver_1.Builder().forBrowser(selenium_webdriver_1.Browser.INTERNET_EXPLORER).usingServer(seleniumServerUrl); } } exports.InternetExplorer = InternetExplorer;