Using Etaoin locally is awesome and super simple 🎉, but I haven't yet figured out how to use it to connect to a remote webdriver. Does anyone have any experience with using Etaoin to connect to remote webdrivers, for example via SauceLabs?
(et/chrome {:headless true})
this way is ok.
Why with-chrome is ok,but with-chrome-headless will report Syntax error (NullPointerException)
?
(with-chrome {} driver
(doto driver
(go "<https://en.wikipedia.org/>")
(quit))) ;=> ok
(with-chrome-headless {} driver
(doto driver
(go "<https://en.wikipedia.org/>")
(quit))) ; => Syntax error (NullPointerException)