2

How can I make it press the shortcut keys Ctrl+Shift+J in Selenium to open the Firefox error console? Or is there some other method to open the Firefox error console from Selenium?

1 Answer 1

4

There is no command in selenium to open firefox error console. You can try

selenium.controlKeyDown()
selenium.shiftKeyDown()
selenium.keyPressNative("j")
selenium.controlKeyUp()
selenium.shiftKeyUp()
selenium.keyUpNative("j")
Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.