Archive for the ‘Firefox’ Category.
August 8, 2012, 1:55 pm
Have you ever wanted to open a url from the command line on OS X? Turns out open can do many cool things like that.
open -a ‘google chrome’ ‘http://www.scottcsims.com’
open -a Firefox.app http://www.scottcsims.com
Sometimes a parallel Selenium run might get out of control and you need to close all your browsers, try this one from the command line:
killall firefox
Yes, I know killall is a very old Unix command, but I didn’t know that I could pass it an application name that a OS X has bound to an executable.
killall firefox-bin
or
killall firefox
I like the -a and -e options for open.
Usage: open [-e] [-t] [-f] [-W] [-R] [-n] [-g] [-h] [-b ] [-a ] [filenames] [--args arguments]
Help: Open opens files from a shell.
By default, opens each file using the default application for that file.
If the file is in the form of a URL, the file will be opened as a URL.
Options:
-a Opens with the specified application.
-b Opens with the specified application bundle identifier.
-e Opens with TextEdit.
-t Opens with default text editor.
-f Reads input from standard input and opens with TextEdit.
-F --fresh Launches the app fresh, that is, without restoring windows. Saved persistent state is lost, excluding Untitled documents.
-R, --reveal Selects in the Finder instead of opening.
-W, --wait-apps Blocks until the used applications are closed (even if they were already running).
--args All remaining arguments are passed in argv to the application's main() function instead of opened.
-n, --new Open a new instance of the application even if one is already running.
-j, --hide Launches the app hidden.
-g, --background Does not bring the application to the foreground.
-h, --header Searches header file locations for headers matching the given filenames, and opens them.
September 20, 2009, 9:10 pm
I have noticed this alert showing up when I start Firefox. After experimenting, I have found the solution. On a Mac go into th ~/Library/Application Support/Firefox/Profiles directory and cd into your profile’s directory. Remove the cert8.db file and restart Firefox. Firefox will regenerate a new file and sites that use https will start working again.
September 14, 2009, 11:33 am
I started using custom Firefox profiles so that I could get around the self signed cert error in firefox. I found a way to easily maintain one configured profile that is used across all Selenium remote control environments running on OS X and multiple windows versions.
- Download the selenium grid software. I am using selenium-grid-1.0.4
- Create a new directory called SeleniumFireFoxProfile in your selenium-grid-1.0.4 directory.
- Start your remote control using the custom profile. rake all:start SELENIUM_ARGS=”-firefoxProfileTemplate SeleniumFireFoxProfile”
- Create a test script to open a selenium client driver and navigate to the site that is getting the ssl cert error. Use a debugger to pause the execution of your script at the browser.open command
- Execute your script to the break point and accept the cert in your Firefox browser.
- Look for the creation of the cert_override.txt file in your user directory. With Firefox 3.0 I found it on my mac in /private/var/folders. I cd to the contained directory and run a find command to locate it sudo find . -name cert_override.txt. With Firefox 3.5 the profile is stored in the user directory ~/Library/Application Support/Firefox/Profiles.
- You should see an entry in your cert_override.txt file after you accept the certificate. Now copy the cert_override.txt from your user directory to your SeleniumFireFoxProfile directory in your selenium grid directory.
- Restart your remote control now using the profile with the cert_override.txt file in it. Rerun your test and break on the open command now you should see your page render instead of the security warning.
Just a warning about the cert_override.txt file. It is very white space sensitive, it is better to copy the whole file into your custom profile directory rather then copying a new line into an existing file.
I check in the override text file along with my selenium software. This way I can add a cert on my local machine and then run a SVN update on the distributed grid hosts to get the new cert information. This works for both windows and OS X.