Thanks to @pipo_dev, I was able to solve the problem that I had with several ratings in NightmareJS, one thing I would like to know is if I can provide multiple reports for the same test, take the following as an example:
describe('test google search results', function() { this.timeout(15000); it('should find the nightmare github link first', function(done) { var nightmare = Nightmare({show: true}) nightmare .goto('http://google.com') .wait(1000) .type('form[action*="/search"] [name=q]', 'github nightmare') .click('form[action*="/search"] [type=submit]') .wait(1000)//.wait('#rcnt') .evaluate(function() { return document.querySelector('div.rc h3.r a').href }) .then(function(link) { console.log("TESTING 1"); expect(link).to.equal('https://github.com/segmentio/nightmare'); nightmare .evaluate(function() { return document.querySelector('div.rc h3.r a').href }) .end() .then(function(link) { console.log("TESTING 2"); expect(link).to.equal('https://github.com/segmentio/nightmare'); done(); }) }) .catch(function(error) { done(new Error(error)) }) }); });
What I would like to see as a result:
Test Google search results ✓ should find the nightmare github link first TEST 1 (8718ms) ✓ should find the nightmare github link first TEST 2 (8718ms)
Instead, I am currently getting something like this:
Test Google search results ✓ should find the nightmare github link first (8718ms)
However, with the current setup, I get only one report for the whole test, maybe my approach is inefficient, but I need to run up to 100 tests in the user interface on one page and not rebuild the tests every time new tests start saving a lot of time.
source share