当前位置: 首页>>代码示例>>TypeScript>>正文


TypeScript by.js方法代码示例

本文整理汇总了TypeScript中protractor.by.js方法的典型用法代码示例。如果您正苦于以下问题:TypeScript by.js方法的具体用法?TypeScript by.js怎么用?TypeScript by.js使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在protractor.by的用法示例。


在下文中一共展示了by.js方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。

示例1: ElementLocator

 ElementLocator(obj) {
    switch (obj.type) {
        case IdentificationType[IdentificationType.Xpath]:
            return element(by.xpath(obj.value));
        case IdentificationType[IdentificationType.ClassName]:
            return element(by.className(obj.value));
        case IdentificationType[IdentificationType.Id]:
            return element(by.id(obj.value));
        case IdentificationType[IdentificationType.Js]:
            return element(by.js(obj.value));
        case IdentificationType[IdentificationType.Css]:
            return element(by.css(obj.value));
        case IdentificationType[IdentificationType.Name]:
            return element(by.name(obj.value));
        default:
            break;
    }
 }
开发者ID:winedarksea1,项目名称:ProtractorProject,代码行数:18,代码来源:basepage.ts

示例2:

by.css(0);
by.css(true);
by.css(() => {});
by.css();
by.css('', '');
by.id(0);
by.id(true);
by.id(() => {});
by.id();
by.id('', '');
by.linkText(0);
by.linkText(true);
by.linkText(() => {});
by.linkText();
by.linkText('', '');
by.js(0);
by.js(true);
by.js(() => {});
by.js();
by.js('', '');
by.name(0);
by.name(true);
by.name(() => {});
by.name();
by.name('', '');
by.partialLinkText(0);
by.partialLinkText(true);
by.partialLinkText(() => {});
by.partialLinkText();
by.partialLinkText('', '');
by.tagName(0);
开发者ID:HelloMQL,项目名称:protractor,代码行数:31,代码来源:test_fail_by.ts

示例3:

by.addLocator('name', 'script');
by.binding('bindingDescriptor');
by.exactBinding('bindingDescriptor');
by.model('model');
by.buttonText('searchText');
by.partialButtonText('searchText');
by.repeater('repeatDescriptor');
by.exactRepeater('repeatDescriptor');
by.cssContainingText('cssSelector', 'searchText');
by.options('optionsDescriptor');
by.deepCss('selector');
by.className('className');
by.css('css');
by.id('id');
by.linkText('linkText');
by.js('js');
by.name('name');
by.partialLinkText('partialText');
by.tagName('tagName');
by.xpath('xpath');
By.addLocator('name', () => {});
By.addLocator('name', 'script');
By.binding('bindingDescriptor');
By.exactBinding('bindingDescriptor');
By.model('model');
By.buttonText('searchText');
By.partialButtonText('searchText');
By.repeater('repeatDescriptor');
By.exactRepeater('repeatDescriptor');
By.cssContainingText('cssSelector', 'searchText');
By.options('optionsDescriptor');
开发者ID:HelloMQL,项目名称:protractor,代码行数:31,代码来源:test_pass.ts


注:本文中的protractor.by.js方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。