I it possible to use f12(developer tools) console to open a new tab and run javascript to simulate clicks and form submissions?
For example I want to click a link in facebook, but I am on a window(google.com)
I will open developer tools, and paste a code that will direct me to facebook and click home.
// window.open('facebook.com')
// $('#home').click();
Is this possible?