1

Running a Rails test suite with Selenium often opens Firefox with the "Start in Safe Mode?" dialog. Is there a way to either 1) disable this, or 2) add a script that will answer "No" if the dialog appears?

Gavin
  • 4,273
  • 3
  • 27
  • 39

2 Answers2

0

It appears to be related to some open Firefox issues. Please see here:

Disable/Change Firefox Safe Mode Hotkey (Shift)

If you're looking for an alternative to selenium and Firefox, I've had success with PhantomJS (a headless WebKit browser) and the poltergeist gem.

Community
  • 1
  • 1
Josh Rieken
  • 2,256
  • 1
  • 19
  • 23
0

For 1)Disable this:

You can create your own custom profile.

For 2)Add a script to answer 'NO'

Use Autoit to write a script for answering NO and use that in your selenium program.

Abhishek_Mishra
  • 4,551
  • 4
  • 25
  • 38