react-codemirror
react-codemirror copied to clipboard
Testing with selenium
I've been stuck trying to test this component with webdriver.io for days now. Has anyone successfully been able to do this??
I actually ended up with this solution:
const newValue = '{ "test": "value" }';
$(".ReactCodeMirror").click();
browser.keys("\uE009a\uE009\uE003");
browser.keys(newValue);
So basically, you click in editor, press CTRL+a and backspace (\uE009a\uE009\uE003). Then just type newValue into editor.