Hey, I don’t know why this is not working please help me to get out of this.
This is what I have done so far:
const Browser = require(“zombie”);
Browser.site = ‘https://boilerplate-mochachai.miard.repl.co’;
suite(“e2e Testing with Zombie.js”, function () {
const browser = new Browser();
suiteSetup(function(done) {
return browser.visit(’/’, done);
});
suite(’“Famous Italian Explorers” form’, function () {
// #5
test(‘submit “surname” : “Colombo” - write your e2e test…’, function (done) {
browser.fill(“surname”, “Colombo”).pressButton(“submit”, function () {
browser.assert.success();
browser.assert.text('span#name', 'Cristoforo');
browser.assert.text('span#surname', 'Colombo');
browser.assert.element('span#dates', 1);
done();
});
});
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36
.
Challenge: Run Functional Tests using a Headless Browser
Link to the challenge: