I am a newbie to Selenium. In Chrome, I am using a command to test if the xpath is correct or not.
Eg. $x("//input[@id='firstName']")
or $x("//button[@name='Save']")
Sometimes, it is quite tough to verify that I am clicking the right icon or button, by running selenium command, which is annoying me..
Is there anything I can write to send(click) functions to the console, and that command does the action what I need (so that I can add it in my piece of code, so that I don't need to run selenium code each and every time.)
Thanks