element not interactable
I get this error when I run a test case. the element is a button. What could be the possible reason? Here`s the code inside "it".
this.timeout(85000);
browser
.pause(global.BROWSERPAUSEVALUE)
.element('[data-short-description="solicitation-signin-email"]')
.setValue('xyz@rmail.com')
.pause(global.BROWSERPAUSEVALUE)
.click('[data-btn="user-signin"]')
.click('[data-btn="user-signin"]')
.notify(done);