How to you interact with your website via Chrome Dev Tools -
i want interact website via chromes developer console.
how can fire example click-event on button <button class="usethis">my button</button>
?
thanks
copy/paste chrome dev tools, console window on page contains class usethis on button, select class , click it.
$("#body .usethis").trigger("click");
Comments
Post a Comment