Skip to content

Instantly share code, notes, and snippets.

View kevinkhill's full-sized avatar

Kevin Hill kevinkhill

View GitHub Profile
@kevinkhill
kevinkhill / next.js
Last active June 26, 2021 14:36
Clicking the `>` in TestOut
// Paste this line into your console (it might give you a warning) and in 12 seconds, it will "click" the `>`
setTimeout(()=>(document.getElementById("ProductViewer-NavNextBtn")).dispatchEvent(new Event('click',{bubbles:true,cancellable:true})), 12*1000);