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


TypeScript e2e_util.openBrowser函數代碼示例

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


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

示例1: openTreeBenchmark

 function openTreeBenchmark(benchmark: Benchmark) {
   let params = [{name: 'depth', value: 4}];
   if (benchmark.extraParams) {
     params = params.concat(benchmark.extraParams);
   }
   browser.rootEl = RootEl;
   openBrowser({
     url: benchmark.url,
     ignoreBrowserSynchronization: benchmark.ignoreBrowserSynchronization,
     params: params,
   });
 }
開發者ID:AnthonyPAlicea,項目名稱:angular,代碼行數:12,代碼來源:tree_spec.ts

示例2: testTreeBenchmark

 function testTreeBenchmark(openConfig: {url: string, ignoreBrowserSynchronization?: boolean}) {
   openBrowser({
     url: openConfig.url,
     ignoreBrowserSynchronization: openConfig.ignoreBrowserSynchronization,
     params: [{name: 'depth', value: 4}],
   });
   $('#createDom').click();
   expect($('#root').getText()).toContain('0');
   $('#createDom').click();
   expect($('#root').getText()).toContain('A');
   $('#destroyDom').click();
   expect($('#root').getText()).toEqual('');
 }
開發者ID:JanStureNielsen,項目名稱:angular,代碼行數:13,代碼來源:tree_spec.ts

示例3: it

 it('should work for ng2 next detect changes', () => {
   let params = [
     {name: 'depth', value: 4},
     // Can't use bundles as we use non exported code
     {name: 'bundles', value: false}
   ];
   openBrowser({
     url: 'all/benchmarks/src/tree/ng2_next/index.html',
     ignoreBrowserSynchronization: true, params
   });
   $('#detectChanges').click();
   expect($('#numberOfChecks').getText()).toContain('10');
 });
開發者ID:JohnnyQQQQ,項目名稱:angular,代碼行數:13,代碼來源:tree_spec.ts

示例4: testLargeformBenchmark

 function testLargeformBenchmark(
     openConfig: {url: string, ignoreBrowserSynchronization?: boolean}) {
   openBrowser({
     url: openConfig.url,
     params: [{name: 'copies', value: 1}],
     ignoreBrowserSynchronization: openConfig.ignoreBrowserSynchronization,
   });
   $('#createDom').click();
   expect(element.all(By.css('input[name=value0]')).get(0).getAttribute('value'))
       .toBe('someValue0');
   $('#destroyDom').click();
   expect(element.all(By.css('input[name=value0]')).count()).toBe(0);
 }
開發者ID:awerlang,項目名稱:angular,代碼行數:13,代碼來源:largeform_spec.ts

示例5: testTreeBenchmark

 function testTreeBenchmark(openConfig: {
   url: string,
   ignoreBrowserSynchronization?: boolean,
   extraParams?: {name: string, value: any}[]
 }) {
   let params = [{name: 'depth', value: 4}];
   if (openConfig.extraParams) {
     params = params.concat(openConfig.extraParams);
   }
   openBrowser({
     url: openConfig.url,
     ignoreBrowserSynchronization: openConfig.ignoreBrowserSynchronization,
     params: params,
   });
   $('#createDom').click();
   expect($('#root').getText()).toContain('0');
   $('#createDom').click();
   expect($('#root').getText()).toContain('A');
   $('#destroyDom').click();
   expect($('#root').getText()).toEqual('');
 }
開發者ID:JohnnyQQQQ,項目名稱:angular,代碼行數:21,代碼來源:tree_spec.ts


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