2016-07-06 3 views
0

acceptAlert()メソッドの使用方法がわかりません。それは私にとってはうまくいかない。 OKとキャンセルの2つのボタンでポップアップアラートを受け入れようとしています。メソッドacceptAlert()がIntern/Leadfootで機能しない

ここに私のテストコードがあります。

queryDatasource: function (kibiUrl, title, description, datasource, query) { 
    return this.remote 
    .get(require.toUrl(kibiUrl)) 
    .setFindTimeout(3000) 
    .sleep(3000) 
    .findByCssSelector('input[ng-model="query.title"]') 
     .clearValue() 
     .type(title) 
     .end() 
    .findByCssSelector('input[ng-model="query.description"]') 
     .type(description) 
     .end() 
    .findByCssSelector('option[label="'+ datasource +'"]') 
     .click() 
     .end() 
    .findByName('sqlQuery') 
    .findByClassName('ace_text-input') 
     .type(query) 
     .end() 
    .findByXpath('//button[@class="btn btn-success"]') 
     .click() 
     .end() 
    .sleep(1000) 
    .acceptAlert() 
    .then(function (text) { 
     console.log(text); 
    }); 
} 

そして、私は次のエラーを取得する:

>> FAIL: chrome on any platform - query mysql datasource (3844ms) 
UnexpectedAlertOpen: [POST http://localhost:4444/wd/hub/session/0c7cbf33-8724-4cfd-8e9c-4434d4570dbb/element/{"using":"css selector","value":"input[ng-model=\"query.title\"]"}] unexpected alert open: {Alert text : Are you sure you want to overwrite MySQL Datasource?} 
    (Session info: chrome=51.0.2704.106) 
    (Driver info: chromedriver=2.21.371461 (633e689b520b25f3e264a2ede6b74ccc23cb636a),platform=Linux 4.2.0-41-generic x86_64) (WARNING: The server did not provide any stacktrace information) 
Command duration or timeout: 1 milliseconds: null 
Build info: version: '2.53.0', revision: '35ae25b', time: '2016-03-15 17:00:58' 
System info: host: 'Latitude-E5510', ip: '127.0.1.1', os.name: 'Linux', os.arch: 'amd64', os.version: '4.2.0-41-generic', java.version: '1.8.0_91' 
Driver info: org.openqa.selenium.chrome.ChromeDriver 
Capabilities [{applicationCacheEnabled=false, rotatable=false, mobileEmulationEnabled=false, chrome={chromedriverVersion=2.21.371461 (633e689b520b25f3e264a2ede6b74ccc23cb636a), userDataDir=/tmp/.com.google.Chrome.CXLvym}, takesHeapSnapshot=true, databaseEnable 
d=false, handlesAlerts=true, hasTouchScreen=false, version=51.0.2704.106, platform=LINUX, browserConnectionEnabled=false, nativeEvents=true, acceptSslCerts=true, locationContextEnabled=true, webStorageEnabled=true, browserName=chrome, takesScreenshot=true, javascriptEnabled=true, cssSelectorsEnabled=true}] 
Session ID: e9d5caeb7c3f4e3e0819b6b65711aa32 
* Element info: {Using=css selector, value=input[ng-model="query.title"]} 
    at runRequest <node_modules/intern/node_modules/leadfoot/Session.js:88:40> 
    at <node_modules/intern/node_modules/leadfoot/Session.js:109:39> 
    at new Promise <node_modules/intern/node_modules/dojo/Promise.ts:411:3> 
    at ProxiedSession._post <node_modules/intern/node_modules/leadfoot/Session.js:63:10> 
    at ProxiedSession.Session.find <node_modules/intern/node_modules/leadfoot/Session.js:1125:15> 
    at Command.<anonymous> <node_modules/intern/node_modules/leadfoot/Command.js:42:36> 
    at <node_modules/intern/node_modules/dojo/Promise.ts:393:15> 
    at run <node_modules/intern/node_modules/dojo/Promise.ts:237:7> 
    at <node_modules/intern/node_modules/dojo/nextTick.ts:44:3> 
    at nextTickCallbackWith0Args <node.js:415:9> 
    at Command.find <node_modules/intern/node_modules/leadfoot/Command.js:23:10> 
    at Command.prototype.(anonymous function) [as findByCssSelector] <node_modules/intern/node_modules/leadfoot/lib/strategies.js:24:16> 
    at Datasource.queryDatasource </home/trex/Development/Siren/kibi-integration/tests/functional/support/page/Datasource.js:53:9> 
    at Test.query mysql datasource [as test] </home/trex/Development/Siren/kibi-integration/tests/functional/community/index.js:83:11> 
    at <node_modules/intern/lib/Test.js:181:24> 
    at <node_modules/intern/browser_modules/dojo/Promise.ts:393:15> 
    at runCallbacks <node_modules/intern/browser_modules/dojo/Promise.ts:11:11> 
    at <node_modules/intern/browser_modules/dojo/Promise.ts:317:4> 
    at run <node_modules/intern/browser_modules/dojo/Promise.ts:237:7> 
    at <node_modules/intern/browser_modules/dojo/nextTick.ts:44:3> 
>> 1/2 tests failed 
>> 1/2 tests failed 

答えて

1

UnexpectedAlertOpenエラーが警告ボックスを見つけるのコールの1の前に開かれたことを意味します。モーダルアラートダイアログでブロックされたため、検索の呼び出しを続行できませんでした。

また、acceptAlertはネイティブブラウザのアラートボックスで動作し、フレームワークによって生成される任意のダイアログボックスでは機能しません(おそらくここでは関係ありませんが、覚えておいてください)。

+0

あなたは正しいです。私は 'acceptAlert()'を動かし、警告ボックスを捕まえました。ご協力ありがとうございます。 – trex

+0

こんにちは、アラートがあるかどうかを確認する方法が見つかりませんか?あなたはそれを知っていますか? – trex

関連する問題