browser.get(`index.html`);
const clicker = (button, counter) => {
const total = 5;
for(let i =0; i < total - 1; i++) {
button.click();
browser.waitForAngular();
}
const count = counter.getText();
expect(count).toEqual(total.toString());
}
it('Attribute', (done) => {