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


TypeScript by.partialButtonText方法代碼示例

本文整理匯總了TypeScript中protractor.by.partialButtonText方法的典型用法代碼示例。如果您正苦於以下問題:TypeScript by.partialButtonText方法的具體用法?TypeScript by.partialButtonText怎麽用?TypeScript by.partialButtonText使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在protractor.by的用法示例。


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

示例1: reportGame

 reportGame(result: Array<Array<string>>) {
   element(by.css('.app-action button')).click();
   browser.wait(ExpectedConditions.presenceOf(element(by.partialButtonText('Report'))), 5 * oneSecond);
   for (let i = 0; i < result.length; i++) {
     for (let j = 0; j < result[i].length; j++) {
       element(by.css(`input[name="name${i}.${j}"]`)).sendKeys(result[i][j]);
       browser.sleep(shortSleep);
     }
   }
   element(by.partialButtonText('Report')).click();
   browser.wait(ExpectedConditions.not(ExpectedConditions.presenceOf(
     element(by.tagName('app-game')))), 5 * oneSecond);
 }
開發者ID:lrem,項目名稱:ladders,代碼行數:13,代碼來源:app.po.ts

示例2: beforeEach

 beforeEach(async () => {
   await browser.get('');
   await disableCSSAnimations();
   await element(by.partialButtonText('backup')).click();
   await waitForIonicPage('import-wallet');
 });
開發者ID:bitjson,項目名稱:copay,代碼行數:6,代碼來源:import-wallet.e2e-spec.ts

示例3: selectAll

 /**
  * Clicks the "select all" link that is only present when selected rows exist.
  */
 selectAll(): Promise<void> {
     return this.eleBulkMessage.element(by.partialButtonText('Select all')).click();
 }
開發者ID:Droogans,項目名稱:encore-ui,代碼行數:6,代碼來源:rxBulkSelect.page.ts

示例4: clearSelections

 /**
  * Clicks the "Clear all" link that is only present when selected rows exist.
  */
 clearSelections(): Promise<void> {
     return this.eleBulkMessage.element(by.partialButtonText('Clear')).click();
 }
開發者ID:Droogans,項目名稱:encore-ui,代碼行數:6,代碼來源:rxBulkSelect.page.ts

示例5:

by.exactBinding(0);
by.exactBinding(true);
by.exactBinding(() => {});
by.exactBinding();
by.exactBinding('', '');
by.model(0);
by.model(true);
by.model(() => {});
by.model();
by.model('', '');
by.buttonText(0);
by.buttonText(true);
by.buttonText(() => {});
by.buttonText();
by.buttonText('', '');
by.partialButtonText(0);
by.partialButtonText(true);
by.partialButtonText(() => {});
by.partialButtonText();
by.partialButtonText('', '');
by.repeater(0);
by.repeater(true);
by.repeater(() => {});
by.repeater();
by.repeater('', '');
by.exactRepeater(0);
by.exactRepeater(true);
by.exactRepeater(() => {});
by.exactRepeater();
by.exactRepeater('', '');
by.cssContainingText(0);
開發者ID:HelloMQL,項目名稱:protractor,代碼行數:31,代碼來源:test_fail_by.ts

示例6:

browser.pause();
browser.pause(100);
browser.actions();
browser.wait('condition');
browser.wait('condition', 100);
browser.wait('condition', 100, 'message');
browser.getCurrentUrl();
browser.getTitle();
browser.takeScreenshot();
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');
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', () => {});
開發者ID:HelloMQL,項目名稱:protractor,代碼行數:31,代碼來源:test_pass.ts

示例7: submit

 submit() {
   element(by.partialButtonText('Create')).click();
 }
開發者ID:lrem,項目名稱:ladders,代碼行數:3,代碼來源:app.po.ts


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