Mocha で NightmareJS を使用しています。すべてが正常に機能しているように見えますが、セッションが異なるテストケースで持続しないため、テストを分離するのに問題があります。
最初のテストは問題なくパスShould be able to edit
しますが、パーティション オプションを使用しているにもかかわらず同じログイン ページが表示されるため、2 番目のテストは失敗します。どうすればこれを克服できますか?
require('mocha-generators').install();
var Nightmare = require('nightmare');
var expect = require('chai').expect;
describe('Nightmare JS tests', function() {
this.timeout(30000);
var url = 'http://localhost/app/';
describe('base functionality', function() {
it('Should be able to login', function*() {
var nightmare = Nightmare({
show: true,
'webPreferences': {
partition: 'persist:somesession'
}
});
var result = yield nightmare
.goto(url)
.wait('.login')
.click('.login')
.wait('h4.heading')
.wait(1000)
.evaluate(function () {
return document.querySelector('h4.heading').innerHTML;
})
.end();
expect(result).to.equal("This is heading");
});
it('Should be able to edit', function*() {
var nightmare = Nightmare({
show: true,
'webPreferences': {
partition: 'persist:somesession'
}
})
var result = yield nightmare
.goto('http://localhost/app/company')
.wait("button.edit")
.click("button.edit")
.wait("input[type='text']")
.insert("input[type='text']", false)
.insert("input[type='text']", "This is some address")
.click("button[type='submit']")
.wait("div.success")
.evaluate(function () {
return document.querySelector("div.success").innerText;
})
.end()
expect(result).to.contain("Updated!");
});
});
});