vote up 1 vote down star
1

Hey Guys,

I have been having this issue ever since i upgraded to macos snow leopard. I can no longer run selenium on Firefox 3.0.4. Any help!!. Below is the error message i get:

Process: firefox-bin [1807] Path: /Applications/Firefox.app/Contents/MacOS/firefox-bin Identifier: firefox-bin Version: ??? (???) Code Type: X86 (Native) Parent Process: java [1727]

Date/Time: 2009-09-01 13:29:26.589 -0700 OS Version: Mac OS X 10.6 (10A432) Report Version: 6

Interval Since Last Report: 30975 sec Crashes Since Last Report: 3 Per-App Crashes Since Last Report: 3 Anonymous UUID: 3B6B31F8-CEE8-48A2-A770-5B04EFF37DF3

Exception Type: EXC_BREAKPOINT (SIGTRAP) Exception Codes: 0x0000000000000002, 0x0000000000000000 Crashed Thread: 0

Dyld Error Message: 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

Model: MacBookPro4,1, BootROM MBP41.00C1.B03, 2 processors, Intel Core 2 Duo, 2.5 GHz, 4 GB, SMC 1.27f2 Graphics: NVIDIA GeForce 8600M GT, GeForce 8600M GT, PCIe, 512 MB Memory Module: global_name AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x8C), Broadcom BCM43xx 1.0 (5.10.91.19) Bluetooth: Version 2.2.0f18, 2 service, 1 devices, 1 incoming serial ports Network Service: Ethernet, Ethernet, en0 Network Service: FireWire, FireWire, fw0 Network Service: AirPort, AirPort, en1 Serial ATA Device: FUJITSU MHY2250BH, 232.89 GB Parallel ATA Device: MATSHITADVD-R UJ-867 USB Device: Hub, 0x05ac (Apple Inc.), 0x9120, 0xfd100000 USB Device: Keyboard Hub, 0x05ac (Apple Inc.), 0x1006, 0xfd110000 USB Device: USB Receiver, 0x046d (Logitech Inc.), 0xc525, 0xfd113000 USB Device: Apple Keyboard, 0x05ac (Apple Inc.), 0x0220, 0xfd112000 USB Device: Apple Cinema HD Display, 0x05ac (Apple Inc.), 0x9220, 0xfd130000 USB Device: Built-in iSight, 0x05ac (Apple Inc.), 0x8502, 0xfd400000 USB Device: Apple Internal Keyboard / Trackpad, 0x05ac (Apple Inc.), 0x0230, 0x5d200000 USB Device: IR Receiver, 0x05ac (Apple Inc.), 0x8242, 0x5d100000 USB Device: BRCM2046 Hub, 0x0a5c (Broadcom Corp.), 0x4500, 0x1a100000 USB Device: Bluetooth USB Host Controller, 0x05ac (Apple Inc.), 0x820f, 0x1a110000 FireWire Device: unknown_device, Unknown

I have tried moving the firefox folder from /[username]/Library/Application Support/ directory and restarting but that doesn't work. Help!

flag

44% accept rate

9 Answers

vote up 1 vote down check

Use the terminal... memyselfandI@mymaschine> sudo mv /Applications/Firefox.app/Contents/MacOS/libsqlite3.dylib /Applications/Firefox.app/Contents/MacOS/_libsqlite3.dylib

link|flag
vote up 0 vote down

I'm using FireWatir and ran int othe same problem. Downgrading to FF3.5.3 and coping appropriate libsqlite3.dylib made everything work again.

link|flag
vote up 0 vote down

Use Safari until the Firefox and/or Selenium developers issue fixes.

The solutions previously mentioned won't work for later versions of Firefox (3.5.5, for example).

link|flag
vote up 1 vote down

Solution works if you run Firefox 3.5.3

http://download.mozilla.org/?product=firefox-3.5.3&os=osx&lang=en-US

link|flag
vote up 0 vote down

Hi there,

Just upgraded firefox, well it automatically did it for me, to 3.5.4 and this issue is now happening again.

I copied the libsqlite3.dylib to _libsqlite3.dylib

But now get following error

SQLite Version Error/The application has been updated, but your version of SQLite is too old and the application cannot run.

I also tried copying libsqlite3.dylib from system as suggested by Steve Soroka, but still get same SQLite Version Error.

I have to copy back to original libsqlite3.dylib to get Firefox to open normally, and cannot get it working under selenium rc 1.0.1

I am running Mac OS X 10.6.1

I have also posted this on Firefox site here http://support.mozilla.com/en-US/forum/1/486263?

Thanks

link|flag
vote up 0 vote down

It seems that firefox uses an outdated version of the libsqlite3.dylib, so when selenium launches it, it keeps on crashes. You can fix this by doing this: First, backup the original file:

mv /Applications/Firefox.app/Contents/MacOS/libsqlite3.dylib /Applications/Firefox.app/Contents/MacOS/libsqlite3.dylib.orig

copy over the current version from the system:

cp /usr/lib/libsqlite3.dylib /Applications/Firefox.app/Contents/MacOS/libsqlite3.dylib

link|flag
vote up 0 vote down

Fix worked for me.

link|flag
vote up 0 vote down

You can also temporarily delete (or re-name) the /Applications/Firefox.app/Contents/MacOS/libsqlite3.dylib file, until an official fix is released. However, this may have unintended side effects, so I would only do it on a machine where you are willing to accept some risk of Firefox crashes. I didn't see any personally, but no guarantees ;-).

Once you finish using Selenium (or when they release a patch), you could restore the file.

See this forum discussion for more information.

link|flag
I tried to rename this file but its telling me permission denied. It seems my permission got screwed upon this upgrade. Any ideas? Also when i tried upgrading from Firefox 3.0 to 3.5, it says i dont have enough permissions? aah!! – unknown (yahoo) Sep 1 at 21:22
vote up 3 vote down

A bug has been logged for this here: http://jira.openqa.org/browse/SRC-743

As mentioned in the above Jira issue, if you recompile Selenium RC without the code that sets DLYD_LIBRARY_PATH then the issue will not occur, however you might want to wait until the issue is closed and a new version of Selenium is released. This has been raised in the Selenium developers Google group and the Webdriver group so hopefully will get some attention soon.

link|flag
thanks for pointing that out. Guess will wait for selenium to release new selenium. – unknown (yahoo) Sep 1 at 21:23

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.