Closed Bug 1369219 Opened 8 years ago Closed 8 years ago

[geckodriver-v0.16.1] org.openqa.selenium.SessionNotCreatedException: Unable to create new remote session.

Categories

(Remote Protocol :: Marionette, defect)

defect
Not set
normal

Tracking

(Not tracked)

RESOLVED INVALID

People

(Reporter: psee03, Unassigned)

Details

User Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.12; rv:45.0) Gecko/20100101 Firefox/45.0 Build ID: 20170411115307 Steps to reproduce: I have the following JUnit code snippet. File pathToBinary = new File("/Applications/IBM Firefox.app/Contents/MacOS/firefox"); FirefoxBinary ffBinary = new FirefoxBinary(pathToBinary); // Load local Firefox default profile ProfilesIni profileIni = new ProfilesIni(); FirefoxProfile ffProfile = profileIni.getProfile("default"); FirefoxOptions ffOptions = new FirefoxOptions(); capabilities = DesiredCapabilities.firefox(); ffOptions.addDesiredCapabilities(capabilities); System.setProperty("webdriver.gecko.driver", "src/test/resources/macos/geckodriver"); ffOptions.setBinary(ffBinary); ffOptions.setProfile(ffProfile); WebDriver driver = new FirefoxDriver(ffOptions); driver.get("http://www.google.com"); ========== Run the JUnit in Eclipse to bring up the Firefox browser at the specified URL. Platform: OSX version 10.12.5 selenium-java 3.3.1 geckodriver v0.16.1 Actual results: When executed to the statement "WebDriver driver = new FirefoxDriver(ffOptions);", the Firefox browser was displayed but to a blank page. Got the following output in the console: Reading properties from JVM environment INFO Loading: Driver Type: FireFox May 31, 2017 4:01:00 PM org.openqa.selenium.firefox.FirefoxOptions toCapabilities INFO: Preferring the firefox binary in these options (/Applications/IBM Firefox.app/Contents/MacOS/firefox rather than /Applications/IBM Firefox.app/Contents/MacOS/firefox) May 31, 2017 4:01:00 PM org.openqa.selenium.firefox.FirefoxOptions toCapabilities INFO: Preferring the firefox binary in these options (/Applications/IBM Firefox.app/Contents/MacOS/firefox rather than null) 1496271660806 geckodriver INFO Listening on 127.0.0.1:27101 1496271671888 geckodriver::marionette INFO Starting browser /Applications/IBM Firefox.app/Contents/MacOS/firefox with args ["-marionette"] The failure trace I got: org.openqa.selenium.SessionNotCreatedException: Unable to create new remote session. desired capabilities = Capabilities [{firefox_binary=FirefoxBinary(/Applications/IBM Firefox.app/Contents/MacOS/firefox), marionette=true, browserName=firefox, moz:firefoxOptions={binary=Optional[FirefoxBinary(/Applications/IBM Firefox.app/Contents/MacOS/firefox)], args=[], legacy=null, logLevel=null, prefs={}, profile=org.openqa.selenium.firefox.FirefoxProfile@17c1bced}, version=, platform=ANY, firefox_profile=org.openqa.selenium.firefox.FirefoxProfile@17c1bced}], required capabilities = Capabilities [{firefox_binary=FirefoxBinary(/Applications/IBM Firefox.app/Contents/MacOS/firefox), moz:firefoxOptions={binary=Optional[FirefoxBinary(/Applications/IBM Firefox.app/Contents/MacOS/firefox)], args=[], legacy=null, logLevel=null, prefs={}, profile=org.openqa.selenium.firefox.FirefoxProfile@17c1bced}, firefox_profile=org.openqa.selenium.firefox.FirefoxProfile@17c1bced}] Build info: version: '3.3.1', revision: '5234b325d5', time: '2017-03-10 09:10:29 +0000' System info: host: 'patricksmacbook.usca.ibm.com', ip: 'fe80:0:0:0:c9a:c234:58a8:f8be%en0', os.name: 'Mac OS X', os.arch: 'x86_64', os.version: '10.12.5', java.version: '1.8.0_71' Driver info: driver.version: FirefoxDriver at org.openqa.selenium.remote.ProtocolHandshake.createSession(ProtocolHandshake.java:126) at org.openqa.selenium.remote.HttpCommandExecutor.execute(HttpCommandExecutor.java:141) at org.openqa.selenium.remote.service.DriverCommandExecutor.execute(DriverCommandExecutor.java:82) at org.openqa.selenium.remote.RemoteWebDriver.execute(RemoteWebDriver.java:604) at org.openqa.selenium.remote.RemoteWebDriver.startSession(RemoteWebDriver.java:244) at org.openqa.selenium.remote.RemoteWebDriver.<init>(RemoteWebDriver.java:131) at org.openqa.selenium.firefox.FirefoxDriver.<init>(FirefoxDriver.java:218) at org.openqa.selenium.firefox.FirefoxDriver.<init>(FirefoxDriver.java:125) at com.ibm.wdp.qa.driver.WebDriverCore.loadDriver(WebDriverCore.java:627) at com.ibm.wdp.qa.driver.WebDriverCore.loadUrl(WebDriverCore.java:242) at com.ibm.wdp.lp.qa.common.Menubar.gotoLandingPage(Menubar.java:95) at com.ibm.wdp.lp.qa.common.Menubar.testLoadLandingPage(Menubar.java:80) at com.ibm.wdp.lp.qa.common.Menubar.<init>(Menubar.java:55) at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) at java.lang.reflect.Constructor.newInstance(Constructor.java:422) at org.junit.runners.BlockJUnit4ClassRunner.createTest(BlockJUnit4ClassRunner.java:217) at org.junit.runners.BlockJUnit4ClassRunner$1.runReflectiveCall(BlockJUnit4ClassRunner.java:266) at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) at org.junit.runners.BlockJUnit4ClassRunner.methodBlock(BlockJUnit4ClassRunner.java:263) at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:78) at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:57) at org.junit.runners.ParentRunner$3.run(ParentRunner.java:290) at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:71) at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:288) at org.junit.runners.ParentRunner.access$000(ParentRunner.java:58) at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:268) at org.junit.runners.ParentRunner.run(ParentRunner.java:363) at org.eclipse.jdt.internal.junit4.runner.JUnit4TestReference.run(JUnit4TestReference.java:86) at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:459) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:678) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:382) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:192) Expected results: Expect the execution would get pass this statement and the Firefox session opens up to the specified site.
I also tried geckodriver-v0.15.0. While the symptom was the same, the problem as reported in the console and the failure trace seemed to be worse. Console output: Reading properties from JVM environment INFO Loading: Driver Type: FireFox May 31, 2017 4:32:00 PM org.openqa.selenium.firefox.FirefoxOptions toCapabilities INFO: Preferring the firefox binary in these options (/Applications/IBM Firefox.app/Contents/MacOS/firefox rather than /Applications/IBM Firefox.app/Contents/MacOS/firefox) May 31, 2017 4:32:00 PM org.openqa.selenium.firefox.FirefoxOptions toCapabilities INFO: Preferring the firefox binary in these options (/Applications/IBM Firefox.app/Contents/MacOS/firefox rather than null) 1496273520997 geckodriver INFO Listening on 127.0.0.1:38256 1496273532251 mozprofile::profile INFO Using profile path /var/folders/zv/pz5n39713691k_ccmfc905wr0000gn/T/rust_mozprofile.ErA623Ek7g7Q 1496273533090 geckodriver::marionette INFO Starting browser /Applications/IBM Firefox.app/Contents/MacOS/firefox with args [] 1496273533094 geckodriver::marionette INFO Connecting to Marionette on localhost:53034 1496273533254 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/XPIProvider.jsm: ["XPIProvider"] 1496273533256 addons.manager DEBUG Loaded provider scope for resource://gre/modules/LightweightThemeManager.jsm: ["LightweightThemeManager"] 1496273533258 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/GMPProvider.jsm 1496273533259 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/PluginProvider.jsm 1496273533259 addons.manager DEBUG Starting provider: XPIProvider 1496273533260 addons.xpi DEBUG startup 1496273533261 addons.xpi INFO Mapping @yahoo_wider_mail_extension to /var/folders/zv/pz5n39713691k_ccmfc905wr0000gn/T/rust_mozprofile.ErA623Ek7g7Q/extensions/@yahoo_wider_mail_extension.xpi 1496273533261 addons.xpi INFO Mapping autoscrollhelper@techsmith.com to /var/folders/zv/pz5n39713691k_ccmfc905wr0000gn/T/rust_mozprofile.ErA623Ek7g7Q/extensions/autoscrollhelper@techsmith.com 1496273533261 addons.xpi INFO Mapping IBM-cck@firefox-extensions.ibm.com to /var/folders/zv/pz5n39713691k_ccmfc905wr0000gn/T/rust_mozprofile.ErA623Ek7g7Q/extensions/IBM-cck@firefox-extensions.ibm.com 1496273533261 addons.xpi INFO Mapping jid1-d0WNmlonBLGJig@jetpack to /var/folders/zv/pz5n39713691k_ccmfc905wr0000gn/T/rust_mozprofile.ErA623Ek7g7Q/extensions/jid1-d0WNmlonBLGJig@jetpack.xpi 1496273533261 addons.xpi INFO Mapping langpack-en-US@firefox.mozilla.org to /var/folders/zv/pz5n39713691k_ccmfc905wr0000gn/T/rust_mozprofile.ErA623Ek7g7Q/extensions/langpack-en-US@firefox.mozilla.org 1496273533261 addons.xpi INFO Mapping langpack-es-ES@firefox.mozilla.org to /var/folders/zv/pz5n39713691k_ccmfc905wr0000gn/T/rust_mozprofile.ErA623Ek7g7Q/extensions/langpack-es-ES@firefox.mozilla.org 1496273533261 addons.xpi INFO Mapping langpack-fr@firefox.mozilla.org to /var/folders/zv/pz5n39713691k_ccmfc905wr0000gn/T/rust_mozprofile.ErA623Ek7g7Q/extensions/langpack-fr@firefox.mozilla.org 1496273533261 addons.xpi INFO Mapping langpack-it@firefox.mozilla.org to /var/folders/zv/pz5n39713691k_ccmfc905wr0000gn/T/rust_mozprofile.ErA623Ek7g7Q/extensions/langpack-it@firefox.mozilla.org 1496273533261 addons.xpi INFO Mapping langpack-ja-JP-mac@firefox.mozilla.org to /var/folders/zv/pz5n39713691k_ccmfc905wr0000gn/T/rust_mozprofile.ErA623Ek7g7Q/extensions/langpack-ja-JP-mac@firefox.mozilla.org 1496273533262 addons.xpi INFO Mapping langpack-ko@firefox.mozilla.org to /var/folders/zv/pz5n39713691k_ccmfc905wr0000gn/T/rust_mozprofile.ErA623Ek7g7Q/extensions/langpack-ko@firefox.mozilla.org 1496273533262 addons.xpi INFO Mapping langpack-pt-BR@firefox.mozilla.org to /var/folders/zv/pz5n39713691k_ccmfc905wr0000gn/T/rust_mozprofile.ErA623Ek7g7Q/extensions/langpack-pt-BR@firefox.mozilla.org 1496273533262 addons.xpi INFO Mapping langpack-zh-CN@firefox.mozilla.org to /var/folders/zv/pz5n39713691k_ccmfc905wr0000gn/T/rust_mozprofile.ErA623Ek7g7Q/extensions/langpack-zh-CN@firefox.mozilla.org 1496273533262 addons.xpi INFO Mapping langpack-zh-TW@firefox.mozilla.org to /var/folders/zv/pz5n39713691k_ccmfc905wr0000gn/T/rust_mozprofile.ErA623Ek7g7Q/extensions/langpack-zh-TW@firefox.mozilla.org 1496273533262 addons.xpi INFO Mapping Lucifox@lucidor.org to /var/folders/zv/pz5n39713691k_ccmfc905wr0000gn/T/rust_mozprofile.ErA623Ek7g7Q/extensions/Lucifox@lucidor.org 1496273533262 addons.xpi INFO Mapping zenhub-enterprise@ibm.com to /var/folders/zv/pz5n39713691k_ccmfc905wr0000gn/T/rust_mozprofile.ErA623Ek7g7Q/extensions/zenhub-enterprise@ibm.com.xpi 1496273533262 addons.xpi INFO Mapping {25A1388B-6B18-46c3-BEBA-A81915D0DE8F} to /var/folders/zv/pz5n39713691k_ccmfc905wr0000gn/T/rust_mozprofile.ErA623Ek7g7Q/extensions/{25A1388B-6B18-46c3-BEBA-A81915D0DE8F} 1496273533262 addons.xpi INFO SystemAddonInstallLocation directory is missing 1496273533263 addons.xpi INFO Mapping loop@mozilla.org to /Applications/IBM Firefox.app/Contents/Resources/browser/features/loop@mozilla.org.xpi 1496273533263 addons.xpi INFO Mapping {972ce4c6-7e08-4474-a285-3208198ce6fd} to /Applications/IBM Firefox.app/Contents/Resources/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi 1496273533263 addons.xpi DEBUG checkForChanges 1496273533264 addons.xpi DEBUG Loaded add-on state from prefs: {"app-profile":{"@yahoo_wider_mail_extension":{"d":"/Users/patricksee/Library/Application Support/Firefox/Profiles/ds22o7f6.default/extensions/@yahoo_wider_mail_extension.xpi","e":true,"v":"0.0.31","st":1490117817000},"autoscrollhelper@techsmith.com":{"d":"/Users/patricksee/Library/Application Support/Firefox/Profiles/ds22o7f6.default/extensions/autoscrollhelper@techsmith.com","e":true,"v":"1.9.7.1-signed.1-signed","st":1487183777000,"mt":1487183761000},"IBM-cck@firefox-extensions.ibm.com":{"d":"/Users/patricksee/Library/Application Support/Firefox/Profiles/ds22o7f6.default/extensions/IBM-cck@firefox-extensions.ibm.com","e":true,"v":"2.4.1","st":1494966948000,"mt":1493827860000},"jid1-d0WNmlonBLGJig@jetpack":{"d":"/Users/patricksee/Library/Application Support/Firefox/Profiles/ds22o7f6.default/extensions/jid1-d0WNmlonBLGJig@jetpack.xpi","e":true,"v":"0.8.3.1-signed.1-signed","st":1487196912000},"langpack-en-US@firefox.mozilla.org":{"d":"/Users/patricksee/Library/Application Support/Firefox/Profiles/ds22o7f6.default/extensions/langpack-en-US@firefox.mozilla.org","e":true,"v":"45.7.0","st":1486710783000,"mt":1486710783000},"langpack-es-ES@firefox.mozilla.org":{"d":"/Users/patricksee/Library/Application Support/Firefox/Profiles/ds22o7f6.default/extensions/langpack-es-ES@firefox.mozilla.org","e":true,"v":"45.7.0","st":1486710783000,"mt":1486710783000},"langpack-fr@firefox.mozilla.org":{"d":"/Users/patricksee/Library/Application Support/Firefox/Profiles/ds22o7f6.default/extensions/langpack-fr@firefox.mozilla.org","e":true,"v":"45.7.0","st":1486710783000,"mt":1486710783000},"langpack-it@firefox.mozilla.org":{"d":"/Users/patricksee/Library/Application Support/Firefox/Profiles/ds22o7f6.default/extensions/langpack-it@firefox.mozilla.org","e":true,"v":"45.7.0","st":1486710783000,"mt":1486710783000},"langpack-ja-JP-mac@firefox.mozilla.org":{"d":"/Users/patricksee/Library/Application Support/Firefox/Profiles/ds22o7f6.default/extensions/langpack-ja-JP-mac@firefox.mozilla.org","e":true,"v":"45.7.0","st":1486710783000,"mt":1486710783000},"langpack-ko@firefox.mozilla.org":{"d":"/Users/patricksee/Library/Application Support/Firefox/Profiles/ds22o7f6.default/extensions/langpack-ko@firefox.mozilla.org","e":true,"v":"45.7.0","st":1486710784000,"mt":1486710783000},"langpack-pt-BR@firefox.mozilla.org":{"d":"/Users/patricksee/Library/Application Support/Firefox/Profiles/ds22o7f6.default/extensions/langpack-pt-BR@firefox.mozilla.org","e":true,"v":"45.7.0","st":1486710784000,"mt":1486710784000},"langpack-zh-CN@firefox.mozilla.org":{"d":"/Users/patricksee/Library/Application Support/Firefox/Profiles/ds22o7f6.default/extensions/langpack-zh-CN@firefox.mozilla.org","e":true,"v":"45.7.0","st":1486710784000,"mt":1486710784000},"langpack-zh-TW@firefox.mozilla.org":{"d":"/Users/patricksee/Library/Application Support/Firefox/Profiles/ds22o7f6.default/extensions/langpack-zh-TW@firefox.mozilla.org","e":true,"v":"45.7.0","st":1486710784000,"mt":1486710784000},"Lucifox@lucidor.org":{"d":"/Users/patricksee/Library/Application Support/Firefox/Profiles/ds22o7f6.default/extensions/Lucifox@lucidor.org","e":true,"v":"0.9.14","st":1487183777000,"mt":1487091914000},"zenhub-enterprise@ibm.com":{"d":"/Users/patricksee/Library/Application Support/Firefox/Profiles/ds22o7f6.default/extensions/zenhub-enterprise@ibm.com.xpi","e":true,"v":"2.13.3","st":1487181417000},"{25A1388B-6B18-46c3-BEBA-A81915D0DE8F}":{"d":"/Users/patricksee/Library/Application Support/Firefox/Profiles/ds22o7f6.default/extensions/{25A1388B-6B18-46c3-BEBA-A81915D0DE8F}","e":true,"v":"1.7.8.6ibm2","st":1486710784000,"mt":1486710784000}},"app-system-defaults":{"loop@mozilla.org":{"d":"/Applications/IBM Firefox.app/Contents/Resources/browser/features/loop@mozilla.org.xpi","e":true,"v":"1.1.14","st":1492671691000}},"app-global":{"{972ce4c6-7e08-4474-a285-3208198ce6fd}":{"d":"/Applications/IBM Firefox.app/Contents/Resources/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","e":true,"v":"45.9.0","st":1492671694000}}} 1496273533264 addons.xpi DEBUG getModTime: Recursive scan of @yahoo_wider_mail_extension 1496273533265 addons.xpi DEBUG Changed add-on @yahoo_wider_mail_extension in app-profile 1496273533265 addons.xpi DEBUG getModTime: Recursive scan of autoscrollhelper@techsmith.com 1496273533266 addons.xpi DEBUG Changed add-on autoscrollhelper@techsmith.com in app-profile 1496273533267 addons.xpi DEBUG getModTime: Recursive scan of IBM-cck@firefox-extensions.ibm.com 1496273533268 addons.xpi DEBUG Changed add-on IBM-cck@firefox-extensions.ibm.com in app-profile 1496273533268 addons.xpi DEBUG getModTime: Recursive scan of jid1-d0WNmlonBLGJig@jetpack 1496273533268 addons.xpi DEBUG Changed add-on jid1-d0WNmlonBLGJig@jetpack in app-profile 1496273533269 addons.xpi DEBUG getModTime: Recursive scan of langpack-en-US@firefox.mozilla.org 1496273533281 addons.xpi DEBUG Changed add-on langpack-en-US@firefox.mozilla.org in app-profile 1496273533281 addons.xpi DEBUG getModTime: Recursive scan of langpack-es-ES@firefox.mozilla.org 1496273533291 addons.xpi DEBUG Changed add-on langpack-es-ES@firefox.mozilla.org in app-profile 1496273533291 addons.xpi DEBUG getModTime: Recursive scan of langpack-fr@firefox.mozilla.org 1496273533301 addons.xpi DEBUG Changed add-on langpack-fr@firefox.mozilla.org in app-profile 1496273533301 addons.xpi DEBUG getModTime: Recursive scan of langpack-it@firefox.mozilla.org 1496273533312 addons.xpi DEBUG Changed add-on langpack-it@firefox.mozilla.org in app-profile 1496273533312 addons.xpi DEBUG getModTime: Recursive scan of langpack-ja-JP-mac@firefox.mozilla.org 1496273533321 addons.xpi DEBUG Changed add-on langpack-ja-JP-mac@firefox.mozilla.org in app-profile 1496273533322 addons.xpi DEBUG getModTime: Recursive scan of langpack-ko@firefox.mozilla.org 1496273533332 addons.xpi DEBUG Changed add-on langpack-ko@firefox.mozilla.org in app-profile 1496273533332 addons.xpi DEBUG getModTime: Recursive scan of langpack-pt-BR@firefox.mozilla.org 1496273533342 addons.xpi DEBUG Changed add-on langpack-pt-BR@firefox.mozilla.org in app-profile 1496273533342 addons.xpi DEBUG getModTime: Recursive scan of langpack-zh-CN@firefox.mozilla.org 1496273533351 addons.xpi DEBUG Changed add-on langpack-zh-CN@firefox.mozilla.org in app-profile 1496273533351 addons.xpi DEBUG getModTime: Recursive scan of langpack-zh-TW@firefox.mozilla.org 1496273533359 addons.xpi DEBUG Changed add-on langpack-zh-TW@firefox.mozilla.org in app-profile 1496273533359 addons.xpi DEBUG getModTime: Recursive scan of Lucifox@lucidor.org 1496273533363 addons.xpi DEBUG Changed add-on Lucifox@lucidor.org in app-profile 1496273533363 addons.xpi DEBUG getModTime: Recursive scan of zenhub-enterprise@ibm.com 1496273533363 addons.xpi DEBUG Changed add-on zenhub-enterprise@ibm.com in app-profile 1496273533363 addons.xpi DEBUG getModTime: Recursive scan of {25A1388B-6B18-46c3-BEBA-A81915D0DE8F} 1496273533371 addons.xpi DEBUG Changed add-on {25A1388B-6B18-46c3-BEBA-A81915D0DE8F} in app-profile 1496273533372 addons.xpi DEBUG getModTime: Recursive scan of loop@mozilla.org 1496273533372 addons.xpi DEBUG Changed add-on loop@mozilla.org in app-system-defaults 1496273533372 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} 1496273533372 addons.xpi DEBUG Changed add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} in app-global 1496273533372 addons.xpi DEBUG getInstallState changed: true, state: {"app-profile":{"@yahoo_wider_mail_extension":{"d":"/var/folders/zv/pz5n39713691k_ccmfc905wr0000gn/T/rust_mozprofile.ErA623Ek7g7Q/extensions/@yahoo_wider_mail_extension.xpi","e":true,"v":"0.0.31","st":1496273532000},"autoscrollhelper@techsmith.com":{"d":"/var/folders/zv/pz5n39713691k_ccmfc905wr0000gn/T/rust_mozprofile.ErA623Ek7g7Q/extensions/autoscrollhelper@techsmith.com","e":true,"v":"1.9.7.1-signed.1-signed","st":1496273532000,"mt":1496273532000},"IBM-cck@firefox-extensions.ibm.com":{"d":"/var/folders/zv/pz5n39713691k_ccmfc905wr0000gn/T/rust_mozprofile.ErA623Ek7g7Q/extensions/IBM-cck@firefox-extensions.ibm.com","e":true,"v":"2.4.1","st":1496273532000,"mt":1496273532000},"jid1-d0WNmlonBLGJig@jetpack":{"d":"/var/folders/zv/pz5n39713691k_ccmfc905wr0000gn/T/rust_mozprofile.ErA623Ek7g7Q/extensions/jid1-d0WNmlonBLGJig@jetpack.xpi","e":true,"v":"0.8.3.1-signed.1-signed","st":1496273532000},"langpack-en-US@firefox.mozilla.org":{"d":"/var/folders/zv/pz5n39713691k_ccmfc905wr0000gn/T/rust_mozprofile.ErA623Ek7g7Q/extensions/langpack-en-US@firefox.mozilla.org","e":true,"v":"45.7.0","st":1496273532000,"mt":1496273532000},"langpack-es-ES@firefox.mozilla.org":{"d":"/var/folders/zv/pz5n39713691k_ccmfc905wr0000gn/T/rust_mozprofile.ErA623Ek7g7Q/extensions/langpack-es-ES@firefox.mozilla.org","e":true,"v":"45.7.0","st":1496273532000,"mt":1496273532000},"langpack-fr@firefox.mozilla.org":{"d":"/var/folders/zv/pz5n39713691k_ccmfc905wr0000gn/T/rust_mozprofile.ErA623Ek7g7Q/extensions/langpack-fr@firefox.mozilla.org","e":true,"v":"45.7.0","st":1496273532000,"mt":1496273532000},"langpack-it@firefox.mozilla.org":{"d":"/var/folders/zv/pz5n39713691k_ccmfc905wr0000gn/T/rust_mozprofile.ErA623Ek7g7Q/extensions/langpack-it@firefox.mozilla.org","e":true,"v":"45.7.0","st":1496273532000,"mt":1496273532000},"langpack-ja-JP-mac@firefox.mozilla.org":{"d":"/var/folders/zv/pz5n39713691k_ccmfc905wr0000gn/T/rust_mozprofile.ErA623Ek7g7Q/extensions/langpack-ja-JP-mac@firefox.mozilla.org","e":true,"v":"45.7.0","st":1496273532000,"mt":1496273532000},"langpack-ko@firefox.mozilla.org":{"d":"/var/folders/zv/pz5n39713691k_ccmfc905wr0000gn/T/rust_mozprofile.ErA623Ek7g7Q/extensions/langpack-ko@firefox.mozilla.org","e":true,"v":"45.7.0","st":1496273532000,"mt":1496273532000},"langpack-pt-BR@firefox.mozilla.org":{"d":"/var/folders/zv/pz5n39713691k_ccmfc905wr0000gn/T/rust_mozprofile.ErA623Ek7g7Q/extensions/langpack-pt-BR@firefox.mozilla.org","e":true,"v":"45.7.0","st":1496273532000,"mt":1496273532000},"langpack-zh-CN@firefox.mozilla.org":{"d":"/var/folders/zv/pz5n39713691k_ccmfc905wr0000gn/T/rust_mozprofile.ErA623Ek7g7Q/extensions/langpack-zh-CN@firefox.mozilla.org","e":true,"v":"45.7.0","st":1496273532000,"mt":1496273532000},"langpack-zh-TW@firefox.mozilla.org":{"d":"/var/folders/zv/pz5n39713691k_ccmfc905wr0000gn/T/rust_mozprofile.ErA623Ek7g7Q/extensions/langpack-zh-TW@firefox.mozilla.org","e":true,"v":"45.7.0","st":1496273532000,"mt":1496273532000},"Lucifox@lucidor.org":{"d":"/var/folders/zv/pz5n39713691k_ccmfc905wr0000gn/T/rust_mozprofile.ErA623Ek7g7Q/extensions/Lucifox@lucidor.org","e":true,"v":"0.9.14","st":1496273532000,"mt":1496273532000},"zenhub-enterprise@ibm.com":{"d":"/var/folders/zv/pz5n39713691k_ccmfc905wr0000gn/T/rust_mozprofile.ErA623Ek7g7Q/extensions/zenhub-enterprise@ibm.com.xpi","e":true,"v":"2.13.3","st":1496273532000},"{25A1388B-6B18-46c3-BEBA-A81915D0DE8F}":{"d":"/var/folders/zv/pz5n39713691k_ccmfc905wr0000gn/T/rust_mozprofile.ErA623Ek7g7Q/extensions/{25A1388B-6B18-46c3-BEBA-A81915D0DE8F}","e":true,"v":"1.7.8.6ibm2","st":1496273532000,"mt":1496273532000}},"app-system-defaults":{"loop@mozilla.org":{"d":"/Applications/IBM Firefox.app/Contents/Resources/browser/features/loop@mozilla.org.xpi","e":true,"v":"1.1.14","st":1492671691000}},"app-global":{"{972ce4c6-7e08-4474-a285-3208198ce6fd}":{"d":"/Applications/IBM Firefox.app/Contents/Resources/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","e":true,"v":"45.9.0","st":1492671694000}}} 1496273533378 addons.xpi-utils DEBUG Opening XPI database /var/folders/zv/pz5n39713691k_ccmfc905wr0000gn/T/rust_mozprofile.ErA623Ek7g7Q/extensions.json 1496273533381 addons.xpi-utils DEBUG Successfully read XPI database 1496273533383 addons.xpi-utils DEBUG Add-on langpack-en-US@firefox.mozilla.org modified in app-profile *** Blocklist::_loadBlocklistFromFile: blocklist is disabled 1496273533401 DeferredSave.extensions.json DEBUG Save changes 1496273533401 DeferredSave.extensions.json DEBUG Save changes 1496273533401 addons.xpi-utils DEBUG Add-on langpack-es-ES@firefox.mozilla.org modified in app-profile 1496273533413 DeferredSave.extensions.json DEBUG Starting timer 1496273533414 DeferredSave.extensions.json DEBUG Save changes 1496273533414 DeferredSave.extensions.json DEBUG Save changes 1496273533414 addons.xpi-utils DEBUG Add-on langpack-fr@firefox.mozilla.org modified in app-profile 1496273533426 DeferredSave.extensions.json DEBUG Save changes 1496273533427 DeferredSave.extensions.json DEBUG Save changes 1496273533427 addons.xpi-utils DEBUG Add-on langpack-it@firefox.mozilla.org modified in app-profile 1496273533438 DeferredSave.extensions.json DEBUG Save changes 1496273533438 DeferredSave.extensions.json DEBUG Save changes 1496273533438 addons.xpi-utils DEBUG Add-on langpack-ja-JP-mac@firefox.mozilla.org modified in app-profile 1496273533449 DeferredSave.extensions.json DEBUG Save changes 1496273533449 DeferredSave.extensions.json DEBUG Save changes 1496273533449 addons.xpi-utils DEBUG Add-on langpack-ko@firefox.mozilla.org modified in app-profile 1496273533460 DeferredSave.extensions.json DEBUG Save changes 1496273533461 DeferredSave.extensions.json DEBUG Save changes 1496273533461 addons.xpi-utils DEBUG Add-on langpack-pt-BR@firefox.mozilla.org modified in app-profile 1496273533472 DeferredSave.extensions.json DEBUG Save changes 1496273533472 DeferredSave.extensions.json DEBUG Save changes 1496273533472 addons.xpi-utils DEBUG Add-on langpack-zh-CN@firefox.mozilla.org modified in app-profile 1496273533483 DeferredSave.extensions.json DEBUG Save changes 1496273533483 DeferredSave.extensions.json DEBUG Save changes 1496273533483 addons.xpi-utils DEBUG Add-on langpack-zh-TW@firefox.mozilla.org modified in app-profile 1496273533494 DeferredSave.extensions.json DEBUG Save changes 1496273533494 DeferredSave.extensions.json DEBUG Save changes 1496273533494 addons.xpi-utils DEBUG Add-on {25A1388B-6B18-46c3-BEBA-A81915D0DE8F} modified in app-profile 1496273533506 DeferredSave.extensions.json DEBUG Starting write 1496273533510 DeferredSave.extensions.json DEBUG Save changes 1496273533510 DeferredSave.extensions.json DEBUG Data changed while write in progress 1496273533510 DeferredSave.extensions.json DEBUG Save changes 1496273533510 addons.xpi-utils DEBUG Add-on zenhub-enterprise@ibm.com modified in app-profile 1496273533554 DeferredSave.extensions.json DEBUG Save changes 1496273533554 DeferredSave.extensions.json DEBUG Save changes 1496273533554 addons.xpi-utils DEBUG Add-on Lucifox@lucidor.org modified in app-profile 1496273533561 DeferredSave.extensions.json DEBUG Write succeeded 1496273533561 addons.xpi-utils DEBUG XPI Database saved, setting schema version preference to 17 1496273533561 DeferredSave.extensions.json DEBUG Starting timer 1496273533571 DeferredSave.extensions.json DEBUG Save changes 1496273533571 DeferredSave.extensions.json DEBUG Save changes 1496273533572 addons.xpi-utils DEBUG Add-on autoscrollhelper@techsmith.com modified in app-profile 1496273533577 DeferredSave.extensions.json DEBUG Save changes 1496273533577 DeferredSave.extensions.json DEBUG Save changes 1496273533578 addons.xpi-utils DEBUG Add-on jid1-d0WNmlonBLGJig@jetpack modified in app-profile 1496273533585 DeferredSave.extensions.json DEBUG Starting write 1496273533587 DeferredSave.extensions.json DEBUG Write succeeded 1496273533596 DeferredSave.extensions.json DEBUG Save changes 1496273533596 DeferredSave.extensions.json DEBUG Save changes 1496273533596 addons.xpi-utils DEBUG Add-on @yahoo_wider_mail_extension modified in app-profile 1496273533598 DeferredSave.extensions.json DEBUG Starting timer 1496273533601 DeferredSave.extensions.json DEBUG Save changes 1496273533601 DeferredSave.extensions.json DEBUG Save changes 1496273533601 addons.xpi-utils DEBUG Add-on IBM-cck@firefox-extensions.ibm.com modified in app-profile 1496273533607 DeferredSave.extensions.json DEBUG Save changes 1496273533608 DeferredSave.extensions.json DEBUG Save changes 1496273533608 addons.xpi-utils INFO Hiding the updated system add-ons. 1496273533609 addons.manager DEBUG Registering startup change 'changed' for langpack-en-US@firefox.mozilla.org 1496273533614 addons.xpi-utils DEBUG Make addon app-profile:langpack-en-US@firefox.mozilla.org visible 1496273533614 DeferredSave.extensions.json DEBUG Save changes 1496273533614 addons.manager DEBUG Registering startup change 'changed' for langpack-es-ES@firefox.mozilla.org 1496273533615 addons.xpi-utils DEBUG Make addon app-profile:langpack-es-ES@firefox.mozilla.org visible 1496273533615 DeferredSave.extensions.json DEBUG Save changes 1496273533615 addons.manager DEBUG Registering startup change 'changed' for langpack-fr@firefox.mozilla.org 1496273533616 addons.xpi-utils DEBUG Make addon app-profile:langpack-fr@firefox.mozilla.org visible 1496273533616 DeferredSave.extensions.json DEBUG Save changes 1496273533616 addons.manager DEBUG Registering startup change 'changed' for langpack-it@firefox.mozilla.org 1496273533617 addons.xpi-utils DEBUG Make addon app-profile:langpack-it@firefox.mozilla.org visible 1496273533617 DeferredSave.extensions.json DEBUG Save changes 1496273533617 addons.manager DEBUG Registering startup change 'changed' for langpack-ja-JP-mac@firefox.mozilla.org 1496273533618 addons.xpi-utils DEBUG Make addon app-profile:langpack-ja-JP-mac@firefox.mozilla.org visible 1496273533618 DeferredSave.extensions.json DEBUG Save changes 1496273533618 addons.manager DEBUG Registering startup change 'changed' for langpack-ko@firefox.mozilla.org 1496273533619 addons.xpi-utils DEBUG Make addon app-profile:langpack-ko@firefox.mozilla.org visible 1496273533619 DeferredSave.extensions.json DEBUG Save changes 1496273533619 addons.manager DEBUG Registering startup change 'changed' for langpack-pt-BR@firefox.mozilla.org 1496273533619 addons.xpi-utils DEBUG Make addon app-profile:langpack-pt-BR@firefox.mozilla.org visible 1496273533620 DeferredSave.extensions.json DEBUG Save changes 1496273533620 addons.manager DEBUG Registering startup change 'changed' for langpack-zh-CN@firefox.mozilla.org 1496273533620 addons.xpi-utils DEBUG Make addon app-profile:langpack-zh-CN@firefox.mozilla.org visible 1496273533621 DeferredSave.extensions.json DEBUG Save changes 1496273533621 addons.manager DEBUG Registering startup change 'changed' for langpack-zh-TW@firefox.mozilla.org 1496273533621 addons.xpi-utils DEBUG Make addon app-profile:langpack-zh-TW@firefox.mozilla.org visible 1496273533621 DeferredSave.extensions.json DEBUG Save changes 1496273533621 addons.manager DEBUG Registering startup change 'changed' for {25A1388B-6B18-46c3-BEBA-A81915D0DE8F} 1496273533622 addons.xpi-utils DEBUG Make addon app-profile:{25A1388B-6B18-46c3-BEBA-A81915D0DE8F} visible 1496273533622 DeferredSave.extensions.json DEBUG Save changes 1496273533622 addons.manager DEBUG Registering startup change 'changed' for zenhub-enterprise@ibm.com 1496273533622 addons.xpi DEBUG Loading bootstrap scope from /Users/patricksee/Library/Application Support/Firefox/Profiles/ds22o7f6.default/extensions/zenhub-enterprise@ibm.com.xpi 1496273533686 addons.xpi DEBUG Calling bootstrap method uninstall on zenhub-enterprise@ibm.com version 2.13.3 1496273533687 addons.xpi DEBUG Loading bootstrap scope from /var/folders/zv/pz5n39713691k_ccmfc905wr0000gn/T/rust_mozprofile.ErA623Ek7g7Q/extensions/zenhub-enterprise@ibm.com.xpi 1496273533688 addons.xpi DEBUG Calling bootstrap method install on zenhub-enterprise@ibm.com version 2.13.3 1496273533688 addons.xpi-utils DEBUG Make addon app-profile:zenhub-enterprise@ibm.com visible 1496273533689 DeferredSave.extensions.json DEBUG Save changes 1496273533689 addons.manager DEBUG Registering startup change 'changed' for Lucifox@lucidor.org 1496273533689 addons.xpi-utils DEBUG Make addon app-profile:Lucifox@lucidor.org visible 1496273533689 DeferredSave.extensions.json DEBUG Save changes 1496273533689 addons.manager DEBUG Registering startup change 'changed' for autoscrollhelper@techsmith.com 1496273533689 addons.xpi-utils DEBUG Make addon app-profile:autoscrollhelper@techsmith.com visible 1496273533690 DeferredSave.extensions.json DEBUG Save changes 1496273533690 addons.manager DEBUG Registering startup change 'changed' for jid1-d0WNmlonBLGJig@jetpack 1496273533690 addons.xpi DEBUG Loading bootstrap scope from /Users/patricksee/Library/Application Support/Firefox/Profiles/ds22o7f6.default/extensions/jid1-d0WNmlonBLGJig@jetpack.xpi 1496273533692 addons.xpi DEBUG Calling bootstrap method uninstall on jid1-d0WNmlonBLGJig@jetpack version 0.8.3.1-signed.1-signed 1496273533693 addons.xpi DEBUG Loading bootstrap scope from /var/folders/zv/pz5n39713691k_ccmfc905wr0000gn/T/rust_mozprofile.ErA623Ek7g7Q/extensions/jid1-d0WNmlonBLGJig@jetpack.xpi 1496273533695 addons.xpi DEBUG Calling bootstrap method install on jid1-d0WNmlonBLGJig@jetpack version 0.8.3.1-signed.1-signed 1496273533695 addons.xpi-utils DEBUG Make addon app-profile:jid1-d0WNmlonBLGJig@jetpack visible 1496273533695 DeferredSave.extensions.json DEBUG Save changes 1496273533695 addons.manager DEBUG Registering startup change 'changed' for @yahoo_wider_mail_extension 1496273533696 addons.xpi DEBUG Loading bootstrap scope from /Users/patricksee/Library/Application Support/Firefox/Profiles/ds22o7f6.default/extensions/@yahoo_wider_mail_extension.xpi 1496273533697 addons.xpi DEBUG Calling bootstrap method uninstall on @yahoo_wider_mail_extension version 0.0.31 1496273533698 addons.xpi DEBUG Loading bootstrap scope from /var/folders/zv/pz5n39713691k_ccmfc905wr0000gn/T/rust_mozprofile.ErA623Ek7g7Q/extensions/@yahoo_wider_mail_extension.xpi 1496273533699 addons.xpi DEBUG Calling bootstrap method install on @yahoo_wider_mail_extension version 0.0.31 1496273533699 addons.xpi-utils DEBUG Make addon app-profile:@yahoo_wider_mail_extension visible 1496273533700 DeferredSave.extensions.json DEBUG Save changes 1496273533700 addons.manager DEBUG Registering startup change 'changed' for IBM-cck@firefox-extensions.ibm.com 1496273533700 addons.xpi-utils DEBUG Make addon app-profile:IBM-cck@firefox-extensions.ibm.com visible 1496273533700 DeferredSave.extensions.json DEBUG Save changes 1496273533700 addons.xpi-utils DEBUG Make addon app-system-defaults:loop@mozilla.org visible 1496273533700 DeferredSave.extensions.json DEBUG Save changes 1496273533700 addons.xpi-utils DEBUG Make addon app-global:{972ce4c6-7e08-4474-a285-3208198ce6fd} visible 1496273533700 DeferredSave.extensions.json DEBUG Save changes 1496273533701 addons.xpi DEBUG Updating XPIState for {"id":"langpack-en-US@firefox.mozilla.org","syncGUID":"Pkk1ZOvqM9O2","location":"app-profile","version":"45.7.0","type":"locale","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"English (US) Language Pack","description":null,"creator":"mozilla.org","homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/var/folders/zv/pz5n39713691k_ccmfc905wr0000gn/T/rust_mozprofile.ErA623Ek7g7Q/extensions/langpack-en-US@firefox.mozilla.org","installDate":1486710783000,"updateDate":1496273532000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":1123994,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"45.7.0","maxVersion":"45.*"}],"targetPlatforms":[],"seen":true} 1496273533701 addons.xpi DEBUG Updating XPIState for {"id":"langpack-es-ES@firefox.mozilla.org","syncGUID":"U9ddUVQtTPuZ","location":"app-profile","version":"45.7.0","type":"locale","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Español (España) Language Pack","description":null,"creator":"mozilla.org","homepageURL":null,"contributors":["Proyecto NAVE (http://www.proyectonave.es/)"]},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/var/folders/zv/pz5n39713691k_ccmfc905wr0000gn/T/rust_mozprofile.ErA623Ek7g7Q/extensions/langpack-es-ES@firefox.mozilla.org","installDate":1486710783000,"updateDate":1496273532000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":775995,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"45.7.0","maxVersion":"45.*"}],"targetPlatforms":[],"seen":true} 1496273533701 addons.xpi DEBUG Updating XPIState for {"id":"langpack-fr@firefox.mozilla.org","syncGUID":"75cbO_d2NlfT","location":"app-profile","version":"45.7.0","type":"locale","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Français Language Pack","description":null,"creator":"L'équipe FrenchMozilla","homepageURL":null,"contributors":["Philippe Dessante","Benoît Leseul","Vincent Béron","Cédric Corazza","Marie Léger-St-Jean","Jérôme Schell"]},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/var/folders/zv/pz5n39713691k_ccmfc905wr0000gn/T/rust_mozprofile.ErA623Ek7g7Q/extensions/langpack-fr@firefox.mozilla.org","installDate":1486710783000,"updateDate":1496273532000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":1192843,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"45.7.0","maxVersion":"45.*"}],"targetPlatforms":[],"seen":true} 1496273533701 addons.xpi DEBUG Updating XPIState for {"id":"langpack-it@firefox.mozilla.org","syncGUID":"2-rHBu5Uu3pr","location":"app-profile","version":"45.7.0","type":"locale","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Italiano (IT) Language Pack","description":null,"creator":"mozillaitalia.org - Francesco Lodolo","homepageURL":null,"contributors":["Associazione Italiana Supporto e Traduzione Mozilla","Francesco Lodolo","Iacopo Benesperi","Michele Dal Corso","Sandro Della Giustina","Simone Lando","Giacomo Magnini","Giuliano Masseroni"]},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/var/folders/zv/pz5n39713691k_ccmfc905wr0000gn/T/rust_mozprofile.ErA623Ek7g7Q/extensions/langpack-it@firefox.mozilla.org","installDate":1486710783000,"updateDate":1496273532000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":772315,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"45.7.0","maxVersion":"45.*"}],"targetPlatforms":[],"seen":true} 1496273533701 addons.xpi DEBUG Updating XPIState for {"id":"langpack-ja-JP-mac@firefox.mozilla.org","syncGUID":"sRaaf14xYJnW","location":"app-profile","version":"45.7.0","type":"locale","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Japanese Language Pack","description":null,"creator":"Mozilla Japanese L10N Community","homepageURL":null,"contributors":["Hiroki Abe","Makoto Arai","Tomoya Asai","Hideyuki EMURA","Shaw Hosaka","Joji Ikeda","Masahiko Imanaka","Kosuke Kaizuka","Hidehiro Kozawa","Teiji Matsuba","Shigeki Narisawa","Takeshi Nishimura","Toshiyuki Oka","Atsushi Sakai","Hiroshi Sekiya","Youhei Tooyama","Satoru Yamaguchi"]},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/var/folders/zv/pz5n39713691k_ccmfc905wr0000gn/T/rust_mozprofile.ErA623Ek7g7Q/extensions/langpack-ja-JP-mac@firefox.mozilla.org","installDate":1486710783000,"updateDate":1496273532000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":1258836,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"45.7.0","maxVersion":"45.*"}],"targetPlatforms":[],"seen":true} 1496273533701 addons.xpi DEBUG Updating XPIState for {"id":"langpack-ko@firefox.mozilla.org","syncGUID":"Sk7eO3dR9LzK","location":"app-profile","version":"45.7.0","type":"locale","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Korean (KR) Language Pack","description":null,"creator":"한글 Mozilla 프로젝트(mozilla.or.kr)","homepageURL":null,"contributors":["Seokchan Yun","JoungKyun Kim"]},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/var/folders/zv/pz5n39713691k_ccmfc905wr0000gn/T/rust_mozprofile.ErA623Ek7g7Q/extensions/langpack-ko@firefox.mozilla.org","installDate":1486710784000,"updateDate":1496273532000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":1178249,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"45.7.0","maxVersion":"45.*"}],"targetPlatforms":[],"seen":true} 1496273533701 addons.xpi DEBUG Updating XPIState for {"id":"langpack-pt-BR@firefox.mozilla.org","syncGUID":"OAT5xGEgtaPW","location":"app-profile","version":"45.7.0","type":"locale","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Português do Brasil Language Pack","description":null,"creator":"br.mozdev.org","homepageURL":null,"contributors":["Fernando Pereira Silveira","Jefferson Hultmann","Marco Aurélio Krause","Reuben Morais"]},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/var/folders/zv/pz5n39713691k_ccmfc905wr0000gn/T/rust_mozprofile.ErA623Ek7g7Q/extensions/langpack-pt-BR@firefox.mozilla.org","installDate":1486710784000,"updateDate":1496273532000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":1170062,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"45.7.0","maxVersion":"45.*"}],"targetPlatforms":[],"seen":true} 1496273533701 addons.xpi DEBUG Updating XPIState for {"id":"langpack-zh-CN@firefox.mozilla.org","syncGUID":"WTZk7bDBkNVi","location":"app-profile","version":"45.7.0","type":"locale","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Chinese Simplified (zh-CN) Language Pack","description":null,"creator":"mozilla.org","homepageURL":null,"contributors":["Wen Shaohua","Jin Jian","Rongjun Mu","Xie Yanbo","Cathayan"]},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/var/folders/zv/pz5n39713691k_ccmfc905wr0000gn/T/rust_mozprofile.ErA623Ek7g7Q/extensions/langpack-zh-CN@firefox.mozilla.org","installDate":1486710784000,"updateDate":1496273532000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":1119173,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"45.7.0","maxVersion":"45.*"}],"targetPlatforms":[],"seen":true} 1496273533701 addons.xpi DEBUG Updating XPIState for {"id":"langpack-zh-TW@firefox.mozilla.org","syncGUID":"1iVxex9rTaXn","location":"app-profile","version":"45.7.0","type":"locale","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Traditional Chinese (zh-TW) Language Pack","description":null,"creator":"Mozilla Taiwan Community (MozTW)","homepageURL":null,"contributors":["Hung-Te Lin(piaip)","Wei-Lun Sun(josesun)","Tim Guan-Tin Chien(timdream)","Peter Pin-Guang Chen(petercpg)"]},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/var/folders/zv/pz5n39713691k_ccmfc905wr0000gn/T/rust_mozprofile.ErA623Ek7g7Q/extensions/langpack-zh-TW@firefox.mozilla.org","installDate":1486710784000,"updateDate":1496273532000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":1101935,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"45.7.0","maxVersion":"45.*"}],"targetPlatforms":[],"seen":true} 1496273533702 addons.xpi DEBUG Updating XPIState for {"id":"{25A1388B-6B18-46c3-BEBA-A81915D0DE8F}","syncGUID":"rW8JrL5bD136","location":"app-profile","version":"1.7.8.6ibm2","type":"extension","internalName":null,"updateURL":"http://pokgsa.ibm.com/projects/m/mozilla/extensions/qls/qls.rdf","updateKey":"MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDQ4YEhGfYkGesenMjaplPCHoQU6U7Gg6g8Ntnfl0VMQfOllyL6iQmhYHMsvRehQhfgm2RMqsTuRajkVm7L4hOv+e41yOvWkwwnKn1dj2FlrynZolGukJL0w1ISyTMnGKxfVo+Q4WTBiyMq/jol3xxXjrqJA3LSZqb6U+g6iH9oLQIDAQAB","optionsURL":"chrome://qls/content/qlssettings.xul","optionsType":null,"aboutURL":null,"icons":{"32":"icon.png","48":"icon.png"},"iconURL":"chrome://qls/skin/qls_32x32.png","icon64URL":null,"defaultLocale":{"name":"Quick Locale Switcher (IBM Edition)","description":"Quickly change the general.useragent.locale preference.","creator":"Martijn Kooij","homepageURL":"http://www.captaincaveman.nl","contributors":["Original author Martijn Kooij","Thanks to LXweb.nl for the GraphX","Thanks to Mark James of famfamfam.com (country flags)","Thanks to Rick of rick.jinlabs.com (gl-ES flag)","Thanks to babelzilla.org","Rick Alther, IBM customizations","-","Goofy (fr)","MatrixIsAllOver (it)","Chuzo (es-ES)","Victory (ja-JP until 1.4)","seabow (ja-JP until 1.5)","Premier (ja until 1.6.7)","Fenian (de-DE)","Batuhan Çetin (tr)","BlueRobot (ko-KR)","Teo (pl)","Petr Šimek (cs-CZ)","Emu (bg-BG)","Zefranc (pt-PT)","Miles (sl-SI)","Fang5566 (zh-CN)","Wladow (sk-SK)","TLemur (ru-RU)","moZes (fy-NL)","Winiah (zh-TW)","Teboga (pt-BR)","AlleyKat (da)","Garas (lt-LT)","miz (ja-JP-mac) (until 1.5)","Regueifeiro (gl-ES)","Besnik (sq-AL)","siiie (he-IL)","Sonickydon (el)","Ian Moody (en-GB)","Pedram Veisi (fa-IR)","phireak (km-KH)","Khoruzhin (uk-UA)","Krcko (hr-HR)","Andrew O. Shadoura (be-BY)","tonynguyen (vi-VN)","dan.lungescu (ro-RO)","acushnir (es-AR)","gLes (hu-HU)","gandhi2 (nb-NO)","bscd (fi)","Opakoman (ca-AD)","nassimjd (ar)","priyanhere (ml-IN)","srtxg (wa-BE)","kristjan (is-IS)","Ivan Jonoski (mk-MK)","Ekko (nn-NO)","ljushaff (sr-RS)","sorbzilla (eo)","sorbzilla (dsb)","sorbzilla (hsb)","Haebaru (ja-JP)","Lakrits (sv-SE)","akerbeltz (gd)"]},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/var/folders/zv/pz5n39713691k_ccmfc905wr0000gn/T/rust_mozprofile.ErA623Ek7g7Q/extensions/{25A1388B-6B18-46c3-BEBA-A81915D0DE8F}","installDate":1486710784000,"updateDate":1496273532000,"applyBackgroundUpdates":1,"bootstrap":false,"skinnable":false,"size":1359093,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"4.0","maxVersion":"39.*"},{"id":"{3550f703-e582-4d05-9a08-453d09bdfdc6}","minVersion":"5.0","maxVersion":"21.0a1"}],"targetPlatforms":[],"multiprocessCompatible":false,"signedState":0,"seen":true} 1496273533702 addons.xpi DEBUG Updating XPIState for {"id":"zenhub-enterprise@ibm.com","syncGUID":"nFY4CHzyzEH_","location":"app-profile","version":"2.13.3","type":"extension","internalName":null,"updateURL":"https://zenhub.innovate.ibm.com/zhe-public/ff-ext-signed/update.xml","updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":"resource://zenhub-enterprise-at-ibm-dot-com/data/img/ZHE-128.png","icon64URL":null,"defaultLocale":{"name":"ZenHub Enterprise","description":"ZenHub - Project management inside GitHub","creator":"ZenHub","homepageURL":"https://www.zenhub.com/"},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/var/folders/zv/pz5n39713691k_ccmfc905wr0000gn/T/rust_mozprofile.ErA623Ek7g7Q/extensions/zenhub-enterprise@ibm.com.xpi","installDate":1487181417000,"updateDate":1496273532000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":4331611,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"38.0a1","maxVersion":"*"}],"targetPlatforms":[],"multiprocessCompatible":false,"signedState":2,"seen":true} 1496273533702 addons.xpi DEBUG Updating XPIState for {"id":"Lucifox@lucidor.org","syncGUID":"agaA-PfMz-zp","location":"app-profile","version":"0.9.14","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":"chrome://lucidor/content/options.xul","optionsType":"2","aboutURL":null,"icons":{"32":"icon.png","48":"icon.png"},"iconURL":"chrome://lucidor/skin/default32.png","icon64URL":"chrome://lucidor/skin/default64.png","defaultLocale":{"name":"Lucifox","description":"Read EPUB e-books and browse OPDS catalogs.","creator":"Ordbrand","homepageURL":"http://lucidor.org/lucifox/","translators":["Daniel Castelo","Tobias Gasser","Roberto Marcolin","Haakon Meland Eriksen","Katsuhiko Okano","Mitsugu Oyama"]},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/var/folders/zv/pz5n39713691k_ccmfc905wr0000gn/T/rust_mozprofile.ErA623Ek7g7Q/extensions/Lucifox@lucidor.org","installDate":1486710784000,"updateDate":1496273532000,"applyBackgroundUpdates":1,"bootstrap":false,"skinnable":false,"size":1241147,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[{"locales":["sv-SE"],"name":"Lucifox","description":"Läs EPUB-böcker och bläddra i OPDS-kataloger.","creator":null,"homepageURL":null},{"locales":["nb-NO"],"name":"Lucifox","description":"Les EPUB-bøker og bla i OPDS-kataloger.","creator":null,"homepageURL":null,"translators":["Haakon Meland Eriksen"]}],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"26.0","maxVersion":"51.*"},{"id":"{92650c4d-4b8e-4d2a-b7eb-24ecf4f6b63a}","minVersion":"2.24","maxVersion":"2.33.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"signedState":2,"seen":true} 1496273533702 addons.xpi DEBUG Updating XPIState for {"id":"autoscrollhelper@techsmith.com","syncGUID":"mqKiJM4v0Fc1","location":"app-profile","version":"1.9.7.1-signed.1-signed","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{"32":"icon.png","48":"icon.png"},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Snagit Autoscroll Helper","description":"Helps Snagit capture whole pages instantly","creator":"TechSmith Corporation","homepageURL":"http://www.techsmith.com/"},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/var/folders/zv/pz5n39713691k_ccmfc905wr0000gn/T/rust_mozprofile.ErA623Ek7g7Q/extensions/autoscrollhelper@techsmith.com","installDate":1487183777000,"updateDate":1496273532000,"applyBackgroundUpdates":1,"bootstrap":false,"skinnable":false,"size":31820,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"6.0","maxVersion":"19.*"}],"targetPlatforms":[{"os":"Darwin","abi":"x86-gcc3"},{"os":"Darwin","abi":"x86_64-gcc3"}],"multiprocessCompatible":false,"signedState":2,"seen":true} 1496273533702 addons.xpi DEBUG Updating XPIState for {"id":"jid1-d0WNmlonBLGJig@jetpack","syncGUID":"Kh11ih0ESkD2","location":"app-profile","version":"0.8.3.1-signed.1-signed","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{"32":"icon.png","48":"icon.png","64":"icon64.png"},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Annotary Toolbar","description":"Highlight and annotate the web, share your notes, learn from others (annotary.com)","creator":"Annotary, Inc","homepageURL":"https://annotary.com/"},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/var/folders/zv/pz5n39713691k_ccmfc905wr0000gn/T/rust_mozprofile.ErA623Ek7g7Q/extensions/jid1-d0WNmlonBLGJig@jetpack.xpi","installDate":1487196912000,"updateDate":1496273532000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":1542518,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"19.0","maxVersion":"20.*"}],"targetPlatforms":[],"multiprocessCompatible":false,"signedState":2,"seen":true} 1496273533702 addons.xpi DEBUG Updating XPIState for {"id":"@yahoo_wider_mail_extension","syncGUID":"9cdCkF0VlBBv","location":"app-profile","version":"0.0.31","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":"resource://yahoo_wider_mail_extension/data/icons/icon.png","icon64URL":null,"defaultLocale":{"name":"Search and Wider Mail by Yahoo","description":"Expand your Yahoo Mail inbox. Set Yahoo as your default search and enjoy a wider view. Wider mail experience works only with Yahoo as the default search engine.","creator":"Yahoo Inc","homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/var/folders/zv/pz5n39713691k_ccmfc905wr0000gn/T/rust_mozprofile.ErA623Ek7g7Q/extensions/@yahoo_wider_mail_extension.xpi","installDate":1490117817000,"updateDate":1496273532000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":124261,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"38.0a1","maxVersion":"*"},{"id":"{aa3c5121-dab2-40e2-81ca-7ea25febc110}","minVersion":"38.0a1","maxVersion":"*"}],"targetPlatforms":[],"multiprocessCompatible":false,"signedState":2,"seen":true} 1496273533702 addons.xpi DEBUG Updating XPIState for {"id":"IBM-cck@firefox-extensions.ibm.com","syncGUID":"6k8HOCFWh8Y6","location":"app-profile","version":"2.4.1","type":"extension","internalName":null,"updateURL":"http://pokgsa.ibm.com/projects/m/mozilla/extensions/ibmcck/%APP_OS%/ibmcck.rdf","updateKey":"MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDK7mwOTBCPqj6f1S7mfkjxmrgLi23+1i80XuyZZngnJLRxBYAf9y6R5OEq4R/tH+/f4WsXeGWSpK2+YE0+8e9VmZktHEtwduVEuP9XxjQAQPfVA4AbLM31RGHhSy6m5ZnNpTiZs5k8xq6ecahF0pedeQwpAJZ4O7gWamAfDsTqawIDAQAB","optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{"32":"icon.png","48":"icon.png"},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"IBM CCK","description":"Customizations to enhance the browsing experience inside the IBM intranet.","creator":"CCK2 Wizard (IBM Edition)","homepageURL":"https://tap.innovate.ibm.com/app/1265"},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/var/folders/zv/pz5n39713691k_ccmfc905wr0000gn/T/rust_mozprofile.ErA623Ek7g7Q/extensions/IBM-cck@firefox-extensions.ibm.com","installDate":1486710783000,"updateDate":1496273532000,"applyBackgroundUpdates":1,"bootstrap":false,"skinnable":false,"size":173741,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"17.0","maxVersion":"54.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"signedState":2,"seen":true} 1496273533702 addons.xpi DEBUG Updating XPIState for {"id":"loop@mozilla.org","syncGUID":"ckS4cR33lxs0","location":"app-system-defaults","version":"1.1.14","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Firefox Hello Beta","description":"Web sharing for Firefox","creator":"Mozilla","homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/Applications/IBM Firefox.app/Contents/Resources/browser/features/loop@mozilla.org.xpi","installDate":1484780287000,"updateDate":1492671691000,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":4109524,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"45.0","maxVersion":"45.*"},{"id":"xpcshell@tests.mozilla.org","minVersion":"0","maxVersion":"10"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true} 1496273533703 addons.xpi DEBUG Updating XPIState for {"id":"{972ce4c6-7e08-4474-a285-3208198ce6fd}","syncGUID":"3k5r3SvBj1Df","location":"app-global","version":"45.9.0","type":"theme","internalName":"classic/1.0","updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{"32":"icon.png","48":"icon.png"},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Default","description":"The default theme.","creator":"Mozilla","homepageURL":null,"contributors":["Mozilla Contributors"]},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"descriptor":"/Applications/IBM Firefox.app/Contents/Resources/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","installDate":1484780287000,"updateDate":1492671694000,"applyBackgroundUpdates":1,"skinnable":true,"size":7140,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"45.9.0","maxVersion":"45.9.0"}],"targetPlatforms":[],"seen":true} 1496273533703 DeferredSave.extensions.json DEBUG Save changes 1496273533704 addons.xpi DEBUG Updating database with changes to installed add-ons 1496273533704 addons.xpi-utils DEBUG Updating add-on states 1496273533704 addons.xpi-utils DEBUG Writing add-ons list 1496273533706 addons.xpi DEBUG Registering manifest for /var/folders/zv/pz5n39713691k_ccmfc905wr0000gn/T/rust_mozprofile.ErA623Ek7g7Q/extensions/langpack-en-US@firefox.mozilla.org 1496273533706 addons.xpi DEBUG Registering manifest for /var/folders/zv/pz5n39713691k_ccmfc905wr0000gn/T/rust_mozprofile.ErA623Ek7g7Q/extensions/langpack-es-ES@firefox.mozilla.org 1496273533706 addons.xpi DEBUG Registering manifest for /var/folders/zv/pz5n39713691k_ccmfc905wr0000gn/T/rust_mozprofile.ErA623Ek7g7Q/extensions/langpack-fr@firefox.mozilla.org 1496273533707 addons.xpi DEBUG Registering manifest for /var/folders/zv/pz5n39713691k_ccmfc905wr0000gn/T/rust_mozprofile.ErA623Ek7g7Q/extensions/langpack-it@firefox.mozilla.org 1496273533707 addons.xpi DEBUG Registering manifest for /var/folders/zv/pz5n39713691k_ccmfc905wr0000gn/T/rust_mozprofile.ErA623Ek7g7Q/extensions/langpack-ja-JP-mac@firefox.mozilla.org 1496273533707 addons.xpi DEBUG Registering manifest for /var/folders/zv/pz5n39713691k_ccmfc905wr0000gn/T/rust_mozprofile.ErA623Ek7g7Q/extensions/langpack-ko@firefox.mozilla.org 1496273533708 addons.xpi DEBUG Registering manifest for /var/folders/zv/pz5n39713691k_ccmfc905wr0000gn/T/rust_mozprofile.ErA623Ek7g7Q/extensions/langpack-pt-BR@firefox.mozilla.org 1496273533708 addons.xpi DEBUG Registering manifest for /var/folders/zv/pz5n39713691k_ccmfc905wr0000gn/T/rust_mozprofile.ErA623Ek7g7Q/extensions/langpack-zh-CN@firefox.mozilla.org 1496273533708 addons.xpi DEBUG Registering manifest for /var/folders/zv/pz5n39713691k_ccmfc905wr0000gn/T/rust_mozprofile.ErA623Ek7g7Q/extensions/langpack-zh-TW@firefox.mozilla.org 1496273533709 addons.xpi DEBUG Registering manifest for /var/folders/zv/pz5n39713691k_ccmfc905wr0000gn/T/rust_mozprofile.ErA623Ek7g7Q/extensions/zenhub-enterprise@ibm.com.xpi 1496273533709 addons.xpi DEBUG Calling bootstrap method startup on zenhub-enterprise@ibm.com version 2.13.3 1496273533710 addons.xpi DEBUG Registering manifest for /var/folders/zv/pz5n39713691k_ccmfc905wr0000gn/T/rust_mozprofile.ErA623Ek7g7Q/extensions/jid1-d0WNmlonBLGJig@jetpack.xpi 1496273533711 addons.xpi DEBUG Calling bootstrap method startup on jid1-d0WNmlonBLGJig@jetpack version 0.8.3.1-signed.1-signed 1496273533737 addons.xpi DEBUG Registering manifest for /var/folders/zv/pz5n39713691k_ccmfc905wr0000gn/T/rust_mozprofile.ErA623Ek7g7Q/extensions/@yahoo_wider_mail_extension.xpi 1496273533737 addons.xpi DEBUG Calling bootstrap method startup on @yahoo_wider_mail_extension version 0.0.31 1496273533737 addons.xpi DEBUG Registering manifest for /Applications/IBM Firefox.app/Contents/Resources/browser/features/loop@mozilla.org.xpi 1496273533738 addons.xpi DEBUG Loading bootstrap scope from /Applications/IBM Firefox.app/Contents/Resources/browser/features/loop@mozilla.org.xpi 1496273533741 addons.xpi DEBUG Calling bootstrap method startup on loop@mozilla.org version 1.1.14 1496273533742 addons.manager DEBUG Registering shutdown blocker for XPIProvider 1496273533743 addons.manager DEBUG Provider finished startup: XPIProvider 1496273533743 addons.manager DEBUG Starting provider: LightweightThemeManager 1496273533743 addons.manager DEBUG Registering shutdown blocker for LightweightThemeManager 1496273533743 addons.manager DEBUG Provider finished startup: LightweightThemeManager 1496273533743 addons.manager DEBUG Starting provider: GMPProvider 1496273533747 addons.manager DEBUG Registering shutdown blocker for GMPProvider 1496273533747 addons.manager DEBUG Provider finished startup: GMPProvider 1496273533748 addons.manager DEBUG Starting provider: PluginProvider 1496273533748 addons.manager DEBUG Registering shutdown blocker for PluginProvider 1496273533748 addons.manager DEBUG Provider finished startup: PluginProvider 1496273533748 addons.manager DEBUG Completed startup sequence JavaScript warning: resource://cck2/Preferences.jsm, line 556: mutating the [[Prototype]] of an object will cause your code to run very slowly; instead create the object with the correct initial [[Prototype]] value using Object.create 1496273533880 addons.manager DEBUG Starting provider: PreviousExperimentProvider 1496273533880 addons.manager DEBUG Registering shutdown blocker for PreviousExperimentProvider 1496273533881 addons.manager DEBUG Provider finished startup: PreviousExperimentProvider 1496273533959 addons.manager DEBUG Starting provider: <unnamed-provider> 1496273533959 addons.manager DEBUG Registering shutdown blocker for <unnamed-provider> 1496273533959 addons.manager DEBUG Provider finished startup: <unnamed-provider> 1496273534074 DeferredSave.extensions.json DEBUG Starting write 1496273534322 DeferredSave.extensions.json DEBUG Write succeeded console.error: yahoo_wider_mail_extension: Logging load reason = startup Failure trace: org.openqa.selenium.SessionNotCreatedException: Not all requiredCapabilities could be met: ["[object Object] does not equal undefined","UEsDBBQACAgIAAOEv0oAAAAAAAAAAAAAAAALAAAAYWRkb25zLmpzb27VPNty20h2v9LLzWZkD0HiSgBKbY1 <most of the trace is left out from here> Command duration or timeout: 0 milliseconds Build info: version: '3.3.1', revision: '5234b325d5', time: '2017-03-10 09:10:29 +0000' System info: host: 'patricksmacbook.usca.ibm.com', ip: 'fe80:0:0:0:c9a:c234:58a8:f8be%en0', os.name: 'Mac OS X', os.arch: 'x86_64', os.version: '10.12.5', java.version: '1.8.0_71' Driver info: driver.version: FirefoxDriver at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) at java.lang.reflect.Constructor.newInstance(Constructor.java:422) at org.openqa.selenium.remote.ErrorHandler.createThrowable(ErrorHandler.java:216) at org.openqa.selenium.remote.ErrorHandler.throwIfResponseFailed(ErrorHandler.java:168) at org.openqa.selenium.remote.ProtocolHandshake.createSession(ProtocolHandshake.java:367) at org.openqa.selenium.remote.ProtocolHandshake.createSession(ProtocolHandshake.java:113) at org.openqa.selenium.remote.HttpCommandExecutor.execute(HttpCommandExecutor.java:141) at org.openqa.selenium.remote.service.DriverCommandExecutor.execute(DriverCommandExecutor.java:82) at org.openqa.selenium.remote.RemoteWebDriver.execute(RemoteWebDriver.java:604) at org.openqa.selenium.remote.RemoteWebDriver.startSession(RemoteWebDriver.java:244) at org.openqa.selenium.remote.RemoteWebDriver.<init>(RemoteWebDriver.java:131) at org.openqa.selenium.firefox.FirefoxDriver.<init>(FirefoxDriver.java:218) at org.openqa.selenium.firefox.FirefoxDriver.<init>(FirefoxDriver.java:125) at com.ibm.wdp.qa.driver.WebDriverCore.loadDriver(WebDriverCore.java:627) at com.ibm.wdp.qa.driver.WebDriverCore.loadUrl(WebDriverCore.java:242) at com.ibm.wdp.lp.qa.common.Menubar.gotoLandingPage(Menubar.java:95) at com.ibm.wdp.lp.qa.common.Menubar.testLoadLandingPage(Menubar.java:80) at com.ibm.wdp.lp.qa.common.Menubar.<init>(Menubar.java:55) at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) at java.lang.reflect.Constructor.newInstance(Constructor.java:422) at org.junit.runners.BlockJUnit4ClassRunner.createTest(BlockJUnit4ClassRunner.java:217) at org.junit.runners.BlockJUnit4ClassRunner$1.runReflectiveCall(BlockJUnit4ClassRunner.java:266) at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) at org.junit.runners.BlockJUnit4ClassRunner.methodBlock(BlockJUnit4ClassRunner.java:263) at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:78) at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:57) at org.junit.runners.ParentRunner$3.run(ParentRunner.java:290) at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:71) at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:288) at org.junit.runners.ParentRunner.access$000(ParentRunner.java:58) at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:268) at org.junit.runners.ParentRunner.run(ParentRunner.java:363) at org.eclipse.jdt.internal.junit4.runner.JUnit4TestReference.run(JUnit4TestReference.java:86) at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:459) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:678) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:382) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:192)
There is selenium-java 3.3.1 in use. You have to upgrade to at least version 3.4 to get a working setup. Also this is not a Marionette issue but Geckodriver and as such would have to be filed at https://github.com/mozilla/geckodriver/issues.
Status: UNCONFIRMED → RESOLVED
Closed: 8 years ago
Resolution: --- → INVALID
Product: Testing → Remote Protocol
You need to log in before you can comment on or make changes to this bug.