21Oct/09Off
Q. firefox-bin quit unexpectedly ?
If you are trying to run Firewatir on Mac OSX and you see the following error message
"firefox-bin quit unexpectedly"
Have a look at the detailed error message available from an irb terminal e.g.
$ irb >>require 'firewatir' => true >> browser || Firefox.new dyld: Library not loaded: /usr/lib/libsqlite3.dylib Referenced from: /System/Library/Frameworks/Security.framework/Versions/A/Security Reason: Incompatible library version: Security requires version 9.0.0 or later, but libsqlite3.dylib provides version 1.0.0
Chances are you have the wrong version of libsqlite3 in your Firefox installation. Run the following commands to copy the correct libraries into Firefox.
$ mv /Applications/Firefox.app/Contents/MacOS/libsqlite3.dylib Applications/Firefox.app/Contents/MacOS/libsqlite3.dylib.orig $ cp /usr/lib/libsqlite3.dylib /Applications/Firefox.app/Contents/MacOS/libsqlite3.dylib
15Oct/08Off
Q. How do I integrate watir with TestLink?
A. This requires several hacks and use of the developer API ...