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


TypeScript By.partialButtonText方法代碼示例

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


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

示例1:

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

示例2:

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');
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');
ExpectedConditions.not(() => {});
開發者ID:HelloMQL,項目名稱:protractor,代碼行數:31,代碼來源:test_pass.ts


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