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


TypeScript by.cssContainingText方法代码示例

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


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

示例1: openEditPane

 openEditPane(name: string) {
     let row = element(by.cssContainingText('td', name));
     return waitForElementPresence(row).then(() => {
         return this.getIconButton(name, '.fa-pencil').click().then(() =>{
             return browser.getCurrentUrl();
         });
     })
 }
开发者ID:JonZeolla,项目名称:incubator-metron,代码行数:8,代码来源:sensor-list.po.ts

示例2: element

 return element(by.css('.alert .close')).click().then(() => {
     return waitForStalenessOf(element(by.cssContainingText('td', name))).then(() =>{
         return true;
     });
 })
开发者ID:JonZeolla,项目名称:incubator-metron,代码行数:5,代码来源:sensor-list.po.ts

示例3: selectNavLink

 selectNavLink(linkName: string) {
   return element(by.cssContainingText('.navigation .nav-link', linkName)).click().then((args) => {
     return true;
   });
 }
开发者ID:JonZeolla,项目名称:incubator-metron,代码行数:5,代码来源:app.po.ts

示例4:

 threatIntelSelect.click().then(() => {
   threatIntelSelect.all(by.cssContainingText('option', threatIntel)).last().click();
 });
开发者ID:JonZeolla,项目名称:incubator-metron,代码行数:3,代码来源:sensor-config.po.ts

示例5: waitForElementVisibility

 return waitForElementVisibility(saveButton).then(() => {
   return element(by.cssContainingText('metron-config-sensor-grok button', 'TEST')).click();
 })
开发者ID:JonZeolla,项目名称:incubator-metron,代码行数:3,代码来源:sensor-config.po.ts

示例6: element

 return element(by.css('select[formcontrolname="parserClassName"]')).click().then(() => {
   return element.all(by.cssContainingText('select[formcontrolname="parserClassName"] option', parserName)).get(0).click();
 })
开发者ID:JonZeolla,项目名称:incubator-metron,代码行数:3,代码来源:sensor-config.po.ts

示例7: saveThreatTriageRule

 saveThreatTriageRule() {
   return element(by.cssContainingText('metron-config-sensor-rule-editor .btn', 'SAVE')).click();
 }
开发者ID:JonZeolla,项目名称:incubator-metron,代码行数:3,代码来源:sensor-config.po.ts

示例8: saveGrokStatement

 saveGrokStatement() {
   let saveButton = element(by.cssContainingText('metron-config-sensor-grok button', 'SAVE'));
   return waitForElementVisibility(saveButton).then(() => {
     return element(by.cssContainingText('metron-config-sensor-grok button', 'SAVE')).click();
   })
 }
开发者ID:JonZeolla,项目名称:incubator-metron,代码行数:6,代码来源:sensor-config.po.ts


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