I’ve tried everything and even the official answer after being stuck for more than two days, but I still can’t pass the test. Is anyone else having this problem?
test('Submit the surname "Colombo" in the HTML form', 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.elements('span#dates', 1);
done();
});
});