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

Popular posts from this blog

java - Spring Data JPA: Why findOne(id) executing delete query internally? -

python - Mongodb How to add addtional information when aggregating? -

java - Incorrect order of records in M-M relationship in hibernate -