當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript chrome.Options類代碼示例

本文整理匯總了TypeScript中selenium-webdriver/chrome.Options的典型用法代碼示例。如果您正苦於以下問題:TypeScript Options類的具體用法?TypeScript Options怎麽用?TypeScript Options使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了Options類的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: CreateContext

export async function CreateContext() {
    if (envOpts.HEADLESS) {
        opts.addArguments('--headless', 'window-size=1192,870', '--no-sandbox')
        expect.extend({ toMatchImageSnapshot })
    }
    else {
        opts.addArguments('window-size=1200,1000')
        expect.extend({
            toMatchImageSnapshot: (received: any, ...actual: any[]) => {
                return {
                    message: () => 'NOOP',
                    pass: true
                }
            }
        })
    }

    opts.addArguments('--disable-rtc-smoothness-algorithm', '--disable-gpu-compositing', '--disable-gpu', '--force-device-scale-factor=1', '--disable-lcd-text')

    let driver = await new webdriver.Builder()
        .forBrowser('chrome')
        .setChromeOptions(opts)
        .build()

    let ctx = new Context(driver, envOpts.RUNDECK_URL, envOpts.S3_UPLOAD, envOpts.S3_BASE)

    return ctx
}
開發者ID:ahormazabal,項目名稱:rundeck,代碼行數:28,代碼來源:selenium.ts

示例2: async

 const buildDriverInstance = async () => {
   switch (browserType) {
     case 'chrome':
       const chromeOptions = new chrome.Options();
       const loggingPref = new logging.Preferences();
       loggingPref.setLevel(logging.Type.BROWSER, logging.Level.ALL);
       chromeOptions.setLoggingPrefs(loggingPref);
       if (process.env.TEST_BROWSER_HEADLESS) {
         // Use --disable-gpu to avoid an error from a missing Mesa library, as per
         // See: https://chromium.googlesource.com/chromium/src/+/lkgr/headless/README.md
         chromeOptions.addArguments('headless', 'disable-gpu');
       }
       return new Builder()
         .forBrowser(browserType)
         .setChromeOptions(chromeOptions)
         .setChromeService(new chrome.ServiceBuilder(chromeDriver.path).enableVerboseLogging())
         .build();
     case 'firefox':
       const firefoxOptions = new firefox.Options();
       if (process.env.TEST_BROWSER_HEADLESS) {
         // See: https://developer.mozilla.org/en-US/docs/Mozilla/Firefox/Headless_mode
         firefoxOptions.addArguments('-headless');
       }
       return new Builder()
         .forBrowser(browserType)
         .setFirefoxOptions(firefoxOptions)
         .setFirefoxService(new firefox.ServiceBuilder(geckoDriver.path).enableVerboseLogging())
         .build();
     default:
       throw new Error(`${browserType} is not supported yet`);
   }
 };
開發者ID:spalger,項目名稱:kibana,代碼行數:32,代碼來源:webdriver.ts

示例3: TestChromeOptions

function TestChromeOptions() {
    let options: chrome.Options = new chrome.Options();
    options = chrome.Options.fromCapabilities(webdriver.Capabilities.chrome());

    options = options.addArguments('a', 'b', 'c');
    options = options.addExtensions('a', 'b', 'c');
    options = options.excludeSwitches('a', 'b', 'c');
    options = options.detachDriver(true);
    options = options.setChromeBinaryPath('path');
    options = options.setChromeLogFile('logfile');
    options = options.setLocalState('state');
    options = options.androidActivity('com.example.Activity');
    options = options.headless();
    options = options.androidDeviceSerial('emulator-5554');
    options = options.androidChrome();
    options = options.androidPackage('com.android.chrome');
    options = options.androidProcess('com.android.chrome');
    options = options.androidUseRunningApp(true);
    options = options.setLoggingPrefs(new webdriver.logging.Preferences());
    options = options.setPerfLoggingPrefs({
        enableNetwork: true, enablePage: true, enableTimeline: true,
        tracingCategories: 'category', bufferUsageReportingInterval: 1000 });
    options = options.setProxy({ proxyType: 'proxyType' });
    options = options.setUserPreferences('preferences');
    let capabilities: webdriver.Capabilities = options.toCapabilities();
    capabilities = options.toCapabilities(webdriver.Capabilities.chrome());
}
開發者ID:AbraaoAlves,項目名稱:DefinitelyTyped,代碼行數:27,代碼來源:chrome.ts

示例4: TestChromeOptions

function TestChromeOptions() {
    var options: chrome.Options = new chrome.Options();
    options = chrome.Options.fromCapabilities(webdriver.Capabilities.chrome());

    options = options.addArguments("a", "b", "c");
    options = options.addExtensions("a", "b", "c");
    options = options.excludeSwitches("a", "b", "c");
    options = options.detachDriver(true);
    options = options.setChromeBinaryPath("path");
    options = options.setChromeLogFile("logfile");
    options = options.setLocalState("state");
    options = options.androidActivity("com.example.Activity");
    options = options.androidDeviceSerial("emulator-5554");
    options = options.androidChrome();
    options = options.androidPackage("com.android.chrome");
    options = options.androidProcess("com.android.chrome");
    options = options.androidUseRunningApp(true);
    options = options.setLoggingPrefs(new webdriver.logging.Preferences());
    options = options.setPerfLoggingPrefs({ enableNetwork: true, enablePage: true, enableTimeline: true, tracingCategories: "category", bufferUsageReportingInterval: 1000 });
    options = options.setProxy({ proxyType: "proxyType" });
    options = options.setUserPreferences("preferences");
    var capabilities: webdriver.Capabilities = options.toCapabilities();
    capabilities = options.toCapabilities(webdriver.Capabilities.chrome());
}
開發者ID:KostyaTretyak,項目名稱:DefinitelyTyped,代碼行數:24,代碼來源:selenium-webdriver-tests.ts


注:本文中的selenium-webdriver/chrome.Options類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。