Whenever I attempt to execute my selenium code using webdriverIO, I encounter the following error:
Failed: unknown error: Element is not clickable at point (389, 709). Another element is in the way: < html lang="en" >...< /html >
The snippet of code causing this issue is as follows:
const checkboxSelector =
getAttributeSelector('data-test', 'manual-checkbox');
browser.click(checkboxSelector);
Is there a solution to remove this error?
--- ADDITIONAL INFORMATION ---
This test is being executed with chromedriver:
var desktop = exports.desktop = [{
browser: 'Chrome',
os: 'Windows',
os_version: '7'
}];