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


TypeScript webdriverio.remote函數代碼示例

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


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

示例1: it

 it("can waitForVisible", () => {
     webdriverio
         .remote(options)
         .init()
         .url("http://www.google.com/")
         .waitForVisible("//input[@type='submit']", 5000)
         .then((visible) => {
             console.log(visible); // Should return true
         })
         .end();
 });
開發者ID:Jeremy-F,項目名稱:DefinitelyTyped,代碼行數:11,代碼來源:webdriverio-tests.ts

示例2: before

 before(async () => {
     client = webdriverio.remote({ deprecationWarnings: true, desiredCapabilities: { browserName: "phantomjs" } });
     await client.init();
 });
開發者ID:VincentDamour,項目名稱:DefinitelyTyped,代碼行數:4,代碼來源:webdriverio-tests.ts

示例3:

const channel = Math.round(Math.random() * 100000000000);

matrix
    .init()
    .url("https://apprtc.appspot.com/r/" + channel)
    .click("#confirm-join-button")
    .pause(5000)
    .end();

const options = {
    desiredCapabilities: {
        browserName: "chrome"
    }
};

webdriverio
    .remote(options)
    .init()
    .url("https://news.ycombinator.com/")
    .selectorExecute("//div", (inputs: HTMLElement[], message: string) => {
        return `${inputs.length} ${message}`;
    }, "divs on the page")
    .then((res: string) => {
        console.log(res);
    })
    .end();

webdriverio
    .remote(options)
    .init()
    .url("http://www.google.com/")
    .waitForVisible("//input[@type='submit']", 5000)
開發者ID:VincentDamour,項目名稱:DefinitelyTyped,代碼行數:32,代碼來源:webdriverio-tests.ts

示例4: require

/*
 * APS
 * 
 * (C) Copyright 2015-2016 Vladimir Grechka
 */

const webdriverio = require('webdriverio')
 
webdriverio
    .remote({
        desiredCapabilities: {
            browserName: 'chrome'
        }
    })
    .init()
    .url('http://127.0.0.1:3001')
    .getTitle().then(function(title) {
        console.log('Title was: ' + title)
    })
    .windowHandleMaximize()
開發者ID:vovagrechka,項目名稱:aps,代碼行數:20,代碼來源:spike-webdriverio.ts

示例5: before

 before(function(done){
     client = webdriverio.remote({ desiredCapabilities: {browserName: "phantomjs"} });
     client.init(done);
 });
開發者ID:ArtemZag,項目名稱:DefinitelyTyped,代碼行數:4,代碼來源:webdriverio-tests.ts

示例6: constructor

 constructor(options: OptionsConstructor) {
     this.name = options.name;
     this.url = `${options.protocol}://${options.url}:${options.port}${options.path ? "/" + options.path : ""}`;
     this.runner = webdriverio.remote(options.config);
 }
開發者ID:thehachez,項目名稱:maduk,代碼行數:5,代碼來源:runner.ts


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