@nightwatch/nightwatch-inspector
Version:
Nightwatch Inspector that allows you to tests command directly from the browser
15 lines (10 loc) • 318 B
JavaScript
/* eslint-disable no-undef */
/**
* Set explore mode
*/
const exploreModeId = 'exploreMode';
function clickOnExploreMode(event) {
const checkBox = event.target;
sendMessageToBackground('EXPLORE_MODE', checkBox.checked);
}
document.getElementById(exploreModeId).addEventListener('click', clickOnExploreMode);