etaoin

jazzytomato 2017-11-06T12:49:36.000322Z

Hey, quick beginner question, how can I scroll down with etaoin to lazy load some content? If there's no such capability, I could send an arrow-down key but I don't know how to actually press a key 😂 I can't find anything in the documentation 😄 The only thing I can think of at the moment is to send some JS instead but I'm sure there's a better way

borkdude 2017-11-06T13:34:48.000169Z

@jazzytomato This is how I do it:

(eta/js-execute
   *chrome*
   "$(\"#your-component\")[0].scrollIntoView()")

jazzytomato 2017-11-06T14:07:01.000160Z

👍

jazzytomato 2017-11-06T14:07:08.000134Z

thanks