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


TypeScript by.id方法代碼示例

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


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

示例1: combinedTrigger

 combinedTrigger() { return element(by.id('combined-t')); }
開發者ID:BernhardRode,項目名稱:material2,代碼行數:1,代碼來源:menu-page.ts

示例2: retrieveDeployedPackageName

 // Retrieve Editor Deployed Package Name from navlogo section
 static retrieveDeployedPackageName() {
     return OperationsHelper.retrieveTextFromElement(element(by.id('network-name')));
 }
開發者ID:marlonprudente,項目名稱:composer,代碼行數:4,代碼來源:editor.ts

示例3: clickExportBND

 // Click Export button
 static clickExportBND() {
     return OperationsHelper.click(element(by.id('editor_export')));
 }
開發者ID:marlonprudente,項目名稱:composer,代碼行數:4,代碼來源:editor.ts

示例4: clearBusinessNetworkName

 // Name the network
 static clearBusinessNetworkName() {
         return element(by.id('import-businessNetworkName')).clear();
 }
開發者ID:bloonbullet,項目名稱:composer,代碼行數:4,代碼來源:deploy.ts

示例5: clickDeploy

 // Deploy
 static clickDeploy() {
    return OperationsHelper.click(element(by.id('import_confirm')));
 }
開發者ID:bloonbullet,項目名稱:composer,代碼行數:4,代碼來源:deploy.ts

示例6: it

 it('should open a template dialog', async () => {
   await expectToExist('.my-template-dialog', false);
   await element(by.id('template')).click();
   await expectToExist('.my-template-dialog');
 });
開發者ID:codef0rmer,項目名稱:material2,代碼行數:5,代碼來源:dialog.e2e.spec.ts

示例7: beforeEach

 beforeEach(() => {
   browser.get('/icon');
   testIcon = element(by.id('test-icon'));
 });
開發者ID:GuzmanPI,項目名稱:material2,代碼行數:4,代碼來源:icon-e2e.spec.ts

示例8: clickTaskListCloudConfiguration

 clickTaskListCloudConfiguration() {
     let button = element(by.id('adf-task-list-cloud-conf'));
     Util.waitUntilElementIsVisible(button);
     Util.waitUntilElementIsClickable(button);
     return button.click();
 }
開發者ID:Alfresco,項目名稱:alfresco-ng2-components,代碼行數:6,代碼來源:configEditorPage.ts

示例9: clickInfinitePaginationConfiguration

 clickInfinitePaginationConfiguration() {
     let button = element(by.id('adf-infinite-pagination-conf'));
     Util.waitUntilElementIsVisible(button);
     Util.waitUntilElementIsClickable(button);
     return button.click();
 }
開發者ID:Alfresco,項目名稱:alfresco-ng2-components,代碼行數:6,代碼來源:configEditorPage.ts

示例10: clickSearchConfiguration

 clickSearchConfiguration() {
     let button = element(by.id('adf-search-conf'));
     Util.waitUntilElementIsVisible(button);
     Util.waitUntilElementIsClickable(button);
     return button.click();
 }
開發者ID:Alfresco,項目名稱:alfresco-ng2-components,代碼行數:6,代碼來源:configEditorPage.ts


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