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


TypeScript protractor.element函數代碼示例

本文整理匯總了TypeScript中protractor.element函數的典型用法代碼示例。如果您正苦於以下問題:TypeScript element函數的具體用法?TypeScript element怎麽用?TypeScript element使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。


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

示例1: beforeEach

 beforeEach(() => {
   host = element(by.css('app-hero-list-groups'));
 });
開發者ID:AnthonyPAlicea,項目名稱:angular,代碼行數:3,代碼來源:app.e2e-spec.ts

示例2: element

 .then(() => {
     let inputFileElement = element(by.id('file-importer_input'));
     return dragDropFile(inputFileElement, filePath);
 })
開發者ID:bloonbullet,項目名稱:composer,代碼行數:4,代碼來源:import.ts

示例3: getMainHeading

 getMainHeading() {
   return element(by.css('app-root h1')).getText();
 }
開發者ID:Antonyk99,項目名稱:ASPANG,代碼行數:3,代碼來源:app.po.ts

示例4: waitToLoadNpmOptions

 static waitToLoadNpmOptions() {
     browser.wait(OperationsHelper.elementsPresent(element(by.id('npm-samples')).all(by.css('.sample-network-list-item')), npmTiles.length), Constants.mlongwait);
 }
開發者ID:bloonbullet,項目名稱:composer,代碼行數:3,代碼來源:import.ts

示例5: retrieveNpmTileOptions

 static retrieveNpmTileOptions() {
   this.waitToLoadNpmOptions();
   return element(by.id('npm-samples')).all(by.css('.sample-network-list-item'));
 }
開發者ID:bloonbullet,項目名稱:composer,代碼行數:4,代碼來源:import.ts

示例6: getParagraphText

 getParagraphText() {
   return element(by.css('<%= prefix %>-root h1')).getText();
 }
開發者ID:CreamBunzz,項目名稱:ImasWeb,代碼行數:3,代碼來源:app.po.ts

示例7: deployBND

 // Click deploy button
 static deployBND() {
   return element(by.id('editor_deploy')).click();
 }
開發者ID:GitWhiskey,項目名稱:composer,代碼行數:4,代碼來源:editor-helper.ts

示例8: importBND

 // Click import button
 static importBND() {
   return element(by.id('editor_import')).click();
 }
開發者ID:GitWhiskey,項目名稱:composer,代碼行數:4,代碼來源:editor-helper.ts


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