I’m sure this is documented somewhere obvious, but I just can’t find it.
I’m currently switching back and forth between Firefox and Selenium using a toolbar button, but it’s annoyingly slow to keep having to use the mouse.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I was able to hack one into existence, so you can do this if you are comfortable with it.
In the version I’m using (1.4.1) open “chrome\content\selenium-ide-overlay.xul”
Near the bottom there is this code:
Which means it already is there, they’ve just commented it out for some reason.
I took out the comments and replaced the sidebar command with one from above so it has its own window like normal
Once I’ve refreshed the browser I can use ctrl-alt-F11 to bring up selenium. (the change from ‘key’ to ‘keycode’ lets you use non-printable keys, so keep it ‘key’ if you want it to br a printable character; you can get the keycodes from:
https://developer.mozilla.org/en/XUL_Tutorial/Keyboard_Shortcuts#Keycode_attribute
Note the ‘accel’ key differs from platform to platform (also explained in the link above)