Need help to configure the latest serenity automation framework....

1,422 views
Skip to first unread message

SeleniumWhat?

unread,
Aug 10, 2017, 9:47:05 AM8/10/17
to Serenity BDD Users Group
Hi all,
  Correct me if I'm wrong... John F. Smart has announced the new release of latest Serenity V1.5.4-rc.1 that will work with Cucumber 1.2.5 + Selenium Web driver (java) 3.4.0 + Firefox Browser 55.0 (?).
  I'd like to upgrade my current (old) versions to the latest but I don't know how to setup a browser's  web driver which uses Gecko driver with the Selenium Web driver.  The current Serenity POM.xml I have is a pre-configured same project I down loaded from internet) and I do not know how John configured the Selenium Web driver so that It will take over the Firefox driver when the automation kicks off the bowser.  I tried to find the code where this takes place but I'm not able to.
  So... my questions are:
  - Has anyone tried the latest versions that I mentioned above?  If you have, would you please share your knowledge with us on how to configure the new selenium web driver 3.4 with Firefox 55.0 (and other browsers)?
  - Is there a pre-packaged sample project(POM.xml, etc..) on the internet somewhere (Git, GitLab, etc...) that I can download and use without going through the configuration of Selenium web driver for each type of browser type?
  - If the  pre-packaged sample project does not exist, then would you please describe the steps of how to configure the Selenium Web Driver with the browser web driver when the automation starts?  Do you happen to know where I can configure the Selenium Web Driver with a browser driver?

   The current setup I have is within the POM.xml file where I can simply state what browser type I want to use.  The details of how the Selenium Driver talks to a browser web driver is hidden and this is where I have trouble to understand.  I do know that Serenity needs to capture the web driver so it can drive the actions.  I do know how to configure the Selenium Web Driver with the browser web driver using Gecko, but I do not know how to pass the web Driver variable to Serenity. To be specific, I do not know how to assign the web driver to Serenity's "getDriver()"?

     Any suggestion, tips, guidance would be greatly appreciated!
     Regards,
     Selenium_What?
  

SeleniumWhat?

unread,
Aug 10, 2017, 11:34:31 AM8/10/17
to Serenity BDD Users Group
  Further research into Serenity Version 1.2.2, I found that John or someone started incorporating Marionette Driver + Gecko Driver since this version?
  I found this class" "firefoxDriverProvider.class" and this method:
 

@Override

public WebDriver newInstance() {

if (StepEventBus.getEventBus().webdriverCallsAreSuspended()) {

return new WebDriverStub();

}

DesiredCapabilities capabilities = new FirefoxDriverCapabilities(environmentVariables).getCapabilities();

WebDriver driver = (shouldUseGeckoDriver()) ? newMarionetteDriver(capabilities) : newFirefoxDriver(capabilities);

driverProperties.registerCapabilities("firefox", capabilities);

return driver;

}


I'm not a Java pro, but it seems to me that  the codes seems to initiates the Firefox Web Driver by looking up the desired web driver based on a specified value in some kind of "environment" configuration file?  And then it returns the driver to Serenity?  These code also suggests that the Gecko Driver and Marionette driver are also included in the pre-packaged dependencies library?

Thanks
 Regards,
 Selenium_What?


John Smart

unread,
Aug 10, 2017, 3:20:09 PM8/10/17
to SeleniumWhat?, Serenity BDD Users Group
No change is needed in the test code, just place the latest geckodriver binary on your system path and Serenity will figure it out.

--
You received this message because you are subscribed to the Google Groups "Serenity BDD Users Group" group.
To unsubscribe from this group and stop receiving emails from it, send an email to thucydides-users+unsubscribe@googlegroups.com.
To post to this group, send email to thucydides-users@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.



--
___________________________________________________
John Smart | Wakaleo Consulting  |  +44 7398 832273
Making smart teams collaborate better
http://johnfergusonsmart.com  |  john....@wakaleo.com
___________________________________________________

We love breaking down silos and helping smart teams collaborate better! Ask about our tailored on-site workshops in Agile Product Planning, BDD Requirements Discovery,  BDD, TDD and Clean Coding, and Advanced BDD Test Automation.

Need some help with Serenity BDD? Check out our Serenity BDD training and support packages here.
___________________________________________________

SeleniumWhat?

unread,
Aug 10, 2017, 4:00:17 PM8/10/17
to Serenity BDD Users Group
Hi John,
  Thanks for the instructions.  I'll try it out.
  It's great to get your response to my inquiry.
  Who would think it is so simple :-)?

  Regards,
  J.N


On Thursday, August 10, 2017 at 9:47:05 AM UTC-4, SeleniumWhat? wrote:

SeleniumWhat?

unread,
Aug 11, 2017, 1:58:18 PM8/11/17
to Serenity BDD Users Group
Hi All,
  I was able to get it passed the Gecko driver part, but I got this error message:

java.lang.NoSuchMethodError: com.google.common.base.Preconditions.checkArgument(ZLjava/lang/String;J)V

at org.openqa.selenium.support.ui.Duration.<init>(Duration.java:41)

at net.serenitybdd.core.pages.DefaultTimeouts.<clinit>(DefaultTimeouts.java:12)

at net.thucydides.core.webdriver.WebDriverFacade.defaultImplicitWait(WebDriverFacade.java:73)

at net.thucydides.core.webdriver.WebDriverFacade.<init>(WebDriverFacade.java:59)

at net.thucydides.core.webdriver.WebdriverProxyFactory.proxyFor(WebdriverProxyFactory.java:58)

at net.thucydides.core.webdriver.ThucydidesWebdriverManager.newDriver(ThucydidesWebdriverManager.java:54)

at net.thucydides.core.webdriver.ThucydidesWebdriverManager.getThreadLocalWebDriver(ThucydidesWebdriverManager.java:163)

at net.thucydides.core.webdriver.ThucydidesWebdriverManager.getWebdriver(ThucydidesWebdriverManager.java:101)

at net.serenitybdd.core.Serenity.getDriver(Serenity.java:175)

at net.serenitybdd.core.Serenity.initializeWithNoStepListener(Serenity.java:93)

at cucumber.runtime.SerenityObjectFactory.newInstance(SerenityObjectFactory.java:68)

at cucumber.runtime.SerenityObjectFactory.cacheNewInstance(SerenityObjectFactory.java:51)

at cucumber.runtime.SerenityObjectFactory.getInstance(SerenityObjectFactory.java:41)

at cucumber.runtime.java.JavaStepDefinition.execute(JavaStepDefinition.java:38)

at cucumber.runtime.StepDefinitionMatch.runStep(StepDefinitionMatch.java:37)

at cucumber.runtime.Runtime.runStep(Runtime.java:300)

at cucumber.runtime.model.StepContainer.runStep(StepContainer.java:44)

at cucumber.runtime.model.StepContainer.runSteps(StepContainer.java:39)

at cucumber.runtime.model.CucumberScenario.run(CucumberScenario.java:44)

at cucumber.runtime.model.CucumberFeature.run(CucumberFeature.java:165)

at cucumber.runtime.Runtime.run(Runtime.java:122)

at cucumber.api.cli.Main.run(Main.java:36)

at cucumber.api.cli.Main.main(Main.java:18)

at ✽.Given user navigates to Amazon "Home" website(/Users/john/workspace/Future Enhancement/src/test/resources/features/admin/user_management/user_Login_authentication/Futute_Enhancement.feature:10)


    Did I miss some jar files?  
    Here is my POM.xml:
====================

<?xml version="1.0" encoding="UTF-8"?>

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"

         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">

    <modelVersion>4.0.0</modelVersion>

    <groupId>com.autoMap</groupId>

    <artifactId>autoMap</artifactId>

    <version>1.0-SNAPSHOT</version>

    <packaging>jar</packaging>

    <!-- Update the Master Head with this new portion -->

    <name>Amazon Login Automation</name>


    <properties>

        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

        <serenity.version>1.1.25-rc.4</serenity.version>

        

        <serenity.cucumber.version>1.5.4</serenity.cucumber.version>

        <cucumber.core.version>1.2.5</cucumber.core.version>

        

        <selenium.java.webdriver.version>3.4.0</selenium.java.webdriver.version>

        <selenium.server.version>3.4.0</selenium.server.version>

        

        <google.guava.version>19.0</google.guava.version>


        <webdriver.driver>firefox</webdriver.driver>

    </properties>


    <repositories>

      <repository>

        <snapshots>

        <enabled>false</enabled>

        </snapshots>

        <id>central</id>

        <name>bintray</name>

        <url>http://jcenter.bintray.com</url>

      </repository>

    </repositories>

    <pluginRepositories>

      <pluginRepository>

        <snapshots>

        <enabled>false</enabled>

        </snapshots>

        <id>central</id>

        <name>bintray-plugins</name>

        <url>http://jcenter.bintray.com</url>

      </pluginRepository>

    </pluginRepositories>


    <dependencies>

        <dependency>

            <groupId>net.serenity-bdd</groupId>

            <artifactId>serenity-core</artifactId>

            <version>${serenity.version}</version>

        </dependency>


        <dependency>

            <groupId>net.serenity-bdd</groupId>

            <artifactId>serenity-cucumber</artifactId>

            <version>${serenity.cucumber.version}</version>

            <scope>test</scope>

        </dependency>

        

        <dependency>

            <groupId>org.seleniumhq.selenium</groupId>

            <artifactId>selenium-java</artifactId>

            <version>${selenium.java.webdriver.version}</version>

            <scope>test</scope>

        </dependency>

        

         <dependency>

            <groupId>org.seleniumhq.selenium</groupId>

            <artifactId>selenium-server</artifactId>

            <version>${selenium.server.version}</version>

            <scope>test</scope>

        </dependency>

        

         <dependency>

            <groupId>info.cukes</groupId>

            <artifactId>cucumber-core</artifactId>

            <version>${cucumber.core.version}</version>

            <scope>test</scope>

        </dependency>

        

        <dependency>

            <groupId>com.google.guava</groupId>

            <artifactId>guava </artifactId>

            <version>${google.guava.version}</version>

            <scope>test</scope>

        </dependency>

        

        <dependency>

            <groupId>org.slf4j</groupId>

            <artifactId>slf4j-simple</artifactId>

            <version>1.7.7</version>

        </dependency>

        <dependency>

            <groupId>junit</groupId>

            <artifactId>junit</artifactId>

            <version>4.12</version>

            <scope>test</scope>

        </dependency>

        <dependency>

            <groupId>org.assertj</groupId>

            <artifactId>assertj-core</artifactId>

            <version>1.7.0</version>

        </dependency>

        <dependency>

            <groupId>com.googlecode.lambdaj</groupId>

            <artifactId>lambdaj</artifactId>

            <version>2.3.3</version>

        </dependency>

    </dependencies>

    <build>

        <plugins>

            <plugin>

                <groupId>org.apache.maven.plugins</groupId>

                <artifactId>maven-surefire-plugin</artifactId>

                <version>2.18.1</version>

                <configuration>

                    <skip>true</skip>

                </configuration>

            </plugin>

            <plugin>

                <artifactId>maven-failsafe-plugin</artifactId>

                <version>2.18.1</version>

                <configuration>

                    <includes>

                        <include>**/FutureLoginRunnerTestSuite.java</include>

                    </includes>

                    <argLine>-Xmx512m</argLine>

                    <systemPropertyVariables>

                        <webdriver.driver>${webdriver.driver}</webdriver.driver>

                    </systemPropertyVariables>

                </configuration>

                <executions>

                    <execution>

                        <goals>

                            <goal>integration-test</goal>

                            <goal>verify</goal>

                        </goals>

                    </execution>

                </executions>

            </plugin>

            <plugin>

                <groupId>org.apache.maven.plugins</groupId>

                <artifactId>maven-compiler-plugin</artifactId>

                <version>3.2</version>

                <configuration>

                    <source>1.7</source>

                    <target>1.7</target>

                </configuration>

            </plugin>

            <plugin>

                <groupId>net.serenity-bdd.maven.plugins</groupId>

                <artifactId>serenity-maven-plugin</artifactId>

                <version>${serenity.version}</version>

                <executions>

                    <execution>

                        <id>serenity-reports</id>

                        <phase>post-integration-test</phase>

                        <goals>

                            <goal>aggregate</goal>

                        </goals>

                    </execution>

                </executions>

            </plugin>

        </plugins>

    </build>

</project>


====================

  Thanks for your help!
  Regards,
  Selenium_What?

John Smart

unread,
Aug 11, 2017, 2:06:28 PM8/11/17
to SeleniumWhat?, Serenity BDD Users Group
You should use the latest version of Serenity (and be running under Java 8). Latest version is 1.5.4-rc.2

--
You received this message because you are subscribed to the Google Groups "Serenity BDD Users Group" group.
To unsubscribe from this group and stop receiving emails from it, send an email to thucydides-users+unsubscribe@googlegroups.com.
To post to this group, send email to thucydides-users@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

SeleniumWhat?

unread,
Aug 11, 2017, 2:15:37 PM8/11/17
to Serenity BDD Users Group
Hi John,
  Thanks for the tip.  I'm using Java8.  I'll try 1.5.4-cr.2 as you recommended.
   Regards,
   Selenium_What?


On Thursday, August 10, 2017 at 9:47:05 AM UTC-4, SeleniumWhat? wrote:

John Smart

unread,
Aug 11, 2017, 2:19:09 PM8/11/17
to SeleniumWhat?, Serenity BDD Users Group
The error is a dependency conflict between Selenium 3.4 and Guava 19. Try using Guava 21 instead.

--
You received this message because you are subscribed to the Google Groups "Serenity BDD Users Group" group.
To unsubscribe from this group and stop receiving emails from it, send an email to thucydides-use...@googlegroups.com.
To post to this group, send email to thucydid...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.

John Smart

unread,
Aug 11, 2017, 2:20:02 PM8/11/17
to SeleniumWhat?, Serenity BDD Users Group
(As well as Serenity 1.5.4-rc.2)

SeleniumWhat?

unread,
Aug 11, 2017, 2:24:10 PM8/11/17
to Serenity BDD Users Group
Hi John,
  Good news.  It passed that error.
  Bad news :-).  I got a new error:

  Exception in thread "main" java.lang.NoClassDefFoundError: Could not initialize class net.serenitybdd.core.pages.DefaultTimeouts

at net.thucydides.core.webdriver.WebDriverFacade.defaultImplicitWait(WebDriverFacade.java:79)

at net.thucydides.core.webdriver.WebDriverFacade.<init>(WebDriverFacade.java:65)

at net.thucydides.core.webdriver.WebdriverProxyFactory.proxyFor(WebdriverProxyFactory.java:67)

at net.thucydides.core.webdriver.SerenityWebdriverManager.newDriver(SerenityWebdriverManager.java:64)

at net.thucydides.core.webdriver.SerenityWebdriverManager.instantiatedThreadLocalWebDriver(SerenityWebdriverManager.java:222)

at net.thucydides.core.webdriver.SerenityWebdriverManager.getWebdriver(SerenityWebdriverManager.java:110)

at net.thucydides.core.webdriver.ThucydidesWebDriverSupport.getDriver(ThucydidesWebDriverSupport.java:128)

at net.thucydides.core.webdriver.ThucydidesWebDriverSupport.getPages(ThucydidesWebDriverSupport.java:185)

at net.serenitybdd.core.Serenity.getPages(Serenity.java:185)

at net.serenitybdd.core.Serenity.getDefaultDependencyInjectors(Serenity.java:86)

at net.serenitybdd.core.Serenity.getDependencyInjectors(Serenity.java:77)

at net.serenitybdd.core.Serenity.resetDependencyInjectors(Serenity.java:70)

at net.serenitybdd.core.Serenity.done(Serenity.java:164)

at cucumber.runtime.SerenityObjectFactory.stop(SerenityObjectFactory.java:28)

at cucumber.runtime.java.JavaBackend.disposeWorld(JavaBackend.java:140)

at cucumber.runtime.Runtime.disposeBackendWorlds(Runtime.java:152)

at cucumber.runtime.model.CucumberScenario.run(CucumberScenario.java:48)

John Smart

unread,
Aug 11, 2017, 2:26:30 PM8/11/17
to SeleniumWhat?, Serenity BDD Users Group
Looks like a dependency conflict in your Maven dependencies. Try using the mvn dependency:tree command to look for conflicts

--
You received this message because you are subscribed to the Google Groups "Serenity BDD Users Group" group.
To unsubscribe from this group and stop receiving emails from it, send an email to thucydides-use...@googlegroups.com.
To post to this group, send email to thucydid...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

SeleniumWhat?

unread,
Aug 11, 2017, 2:30:27 PM8/11/17
to Serenity BDD Users Group
Hi John,
  Guava 21.0 does the trick but then I get this error message:

 @Amazon-User-Login-Authentication

  Scenario: Amazon User Login Authentication      # /Users/john/workspace/Future Enhancement/src/test/resources/features/admin/user_management/user_Login_authentication/Futute_Enhancement.feature:9

    Given user navigates to Amazon "Home" website # DefinitionSteps.user_navigates_to_Amazon_website(String)

      net.thucydides.core.webdriver.UnsupportedDriverException: Could not instantiate class org.openqa.selenium.firefox.FirefoxDriver

      at net.thucydides.core.webdriver.WebDriverFacade.newDriverInstance(WebDriverFacade.java:152)

      at net.thucydides.core.webdriver.WebDriverFacade.newProxyDriver(WebDriverFacade.java:139)

      at net.thucydides.core.webdriver.WebDriverFacade.getProxiedDriver(WebDriverFacade.java:109)

      at net.thucydides.core.webdriver.WebDriverFacade.openIgnoringHtmlUnitScriptErrors(WebDriverFacade.java:184)

      at net.thucydides.core.webdriver.WebDriverFacade.get(WebDriverFacade.java:179)

      at net.serenitybdd.core.pages.PageObject.openPageAtUrl(PageObject.java:827)

      at net.serenitybdd.core.pages.PageObject.open(PageObject.java:737)

      at net.serenitybdd.core.pages.PageObject.open(PageObject.java:725)

      at auto.steps.serenity.EndUserSteps.navigates_to_page(EndUserSteps.java:50)

      at auto.steps.serenity.EndUserSteps$$EnhancerByCGLIB$$7c8c1f0.CGLIB$navigates_to_page$0(<generated>)

      at auto.steps.serenity.EndUserSteps$$EnhancerByCGLIB$$7c8c1f0$$FastClassByCGLIB$$f66f4302.invoke(<generated>)

      at net.sf.cglib.proxy.MethodProxy.invokeSuper(MethodProxy.java:228)

      at net.thucydides.core.steps.StepInterceptor.invokeMethod(StepInterceptor.java:395)

      at net.thucydides.core.steps.StepInterceptor.executeTestStepMethod(StepInterceptor.java:380)

      at net.thucydides.core.steps.StepInterceptor.runTestStep(StepInterceptor.java:355)

      at net.thucydides.core.steps.StepInterceptor.testStepResult(StepInterceptor.java:132)

      at net.thucydides.core.steps.StepInterceptor.intercept(StepInterceptor.java:61)

      at auto.steps.serenity.EndUserSteps$$EnhancerByCGLIB$$7c8c1f0.navigates_to_page(<generated>)

      at auto.steps.DefinitionSteps.user_navigates_to_Amazon_website(DefinitionSteps.java:19)

      at ✽.Given user navigates to Amazon "Home" website(/Users/john/workspace/Future Enhancement/src/test/resources/features/admin/user_management/user_Login_authentication/Futute_Enhancement.feature:10)

      Caused by: net.thucydides.core.webdriver.UnsupportedDriverException: Could not instantiate new WebDriver instance of type class org.openqa.selenium.firefox.FirefoxDriver (Could not start a new session. Possible causes are invalid address of the remote server or browser start-up failure.

      Build info: version: '3.4.0', revision: 'unknown', time: 'unknown'

      System info: host: 'Macbook.home', ip: 'fe80:0:0:0:106a:64a0:bab4:4158%en0', os.name: 'Mac OS X', os.arch: 'x86_64', os.version: '10.12.2', java.version: '1.8.0_101'

      Driver info: driver.version: FirefoxDriver

      at net.thucydides.core.webdriver.WebDriverFactory.newWebdriverInstance(WebDriverFactory.java:135)

      at net.thucydides.core.webdriver.WebDriverFacade.newDriverInstance(WebDriverFacade.java:148)

      at net.thucydides.core.webdriver.WebDriverFacade.newProxyDriver(WebDriverFacade.java:139)

      at net.thucydides.core.webdriver.WebDriverFacade.getProxiedDriver(WebDriverFacade.java:109)

      at net.thucydides.core.webdriver.WebDriverFacade.openIgnoringHtmlUnitScriptErrors(WebDriverFacade.java:184)

      at net.thucydides.core.webdriver.WebDriverFacade.get(WebDriverFacade.java:179)

      at net.serenitybdd.core.pages.PageObject.openPageAtUrl(PageObject.java:827)

      at net.serenitybdd.core.pages.PageObject.open(PageObject.java:737)

      at net.serenitybdd.core.pages.PageObject.open(PageObject.java:725)

      at auto.steps.serenity.EndUserSteps.navigates_to_page(EndUserSteps.java:50)

      at auto.steps.serenity.EndUserSteps$$EnhancerByCGLIB$$7c8c1f0.CGLIB$navigates_to_page$0(<generated>)

      at auto.steps.serenity.EndUserSteps$$EnhancerByCGLIB$$7c8c1f0$$FastClassByCGLIB$$f66f4302.invoke(<generated>)

      at net.sf.cglib.proxy.MethodProxy.invokeSuper(MethodProxy.java:228)

      at net.thucydides.core.steps.StepInterceptor.invokeMethod(StepInterceptor.java:395)

      at net.thucydides.core.steps.StepInterceptor.executeTestStepMethod(StepInterceptor.java:380)

      at net.thucydides.core.steps.StepInterceptor.runTestStep(StepInterceptor.java:355)

      at net.thucydides.core.steps.StepInterceptor.testStepResult(StepInterceptor.java:132)

      at net.thucydides.core.steps.StepInterceptor.intercept(StepInterceptor.java:61)

      at auto.steps.serenity.EndUserSteps$$EnhancerByCGLIB$$7c8c1f0.navigates_to_page(<generated>)

      at auto.steps.DefinitionSteps.user_navigates_to_Amazon_website(DefinitionSteps.java:19)

      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

John Smart

unread,
Aug 11, 2017, 2:31:44 PM8/11/17
to SeleniumWhat?, Serenity BDD Users Group
Do you have the latest version of geckodriver on your system path?

--
You received this message because you are subscribed to the Google Groups "Serenity BDD Users Group" group.
To unsubscribe from this group and stop receiving emails from it, send an email to thucydides-use...@googlegroups.com.
To post to this group, send email to thucydid...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

SeleniumWhat?

unread,
Aug 11, 2017, 2:49:15 PM8/11/17
to Serenity BDD Users Group
Yes I do.
 I think it not complaining about the Gecko..  it seems complaining about some kind of selenium server...  Do I need to have selenium-server-standalone.jar ?


 Here is the full error messages:

1502476051423 addons.manager DEBUG Application has been upgraded

1502476051452 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/XPIProvider.jsm: ["XPIProvider", "XPIInternal"]

1502476051456 addons.manager DEBUG Loaded provider scope for resource://gre/modules/LightweightThemeManager.jsm: ["LightweightThemeManager"]

1502476051491 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/GMPProvider.jsm

1502476051495 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/PluginProvider.jsm

1502476051495 addons.manager DEBUG Starting provider: XPIProvider

1502476051496 addons.xpi DEBUG startup

1502476051496 addons.xpi INFO SystemAddonInstallLocation directory is missing

1502476051496 addons.xpi INFO Removing all system add-on upgrades.

1502476051497 addons.xpi DEBUG Skipping unavailable install location app-system-share

1502476051498 addons.xpi DEBUG checkForChanges

1502476051498 addons.xpi DEBUG Loaded add-on state: ${}

1502476051499 addons.xpi INFO Mapping fxdr...@googlecode.com to /var/folders/fw/vhc93khn6sb6k_pt32v6s2c80000gn/T/anonymous505903171548777814webdriver-profile/extensions/fxdr...@googlecode.com

1502476051499 addons.xpi DEBUG Ignoring file entry whose name is not a valid add-on ID: /var/folders/fw/vhc93khn6sb6k_pt32v6s2c80000gn/T/anonymous505903171548777814webdriver-profile/extensions/webdriver-staging

1502476051499 addons.xpi DEBUG New add-on fxdr...@googlecode.com in app-profile

1502476051500 addons.xpi INFO Mapping fxdr...@googlecode.com to /var/folders/fw/vhc93khn6sb6k_pt32v6s2c80000gn/T/anonymous505903171548777814webdriver-profile/extensions/fxdr...@googlecode.com

1502476051501 addons.xpi INFO Mapping aush...@mozilla.org to /Applications/Firefox.app/Contents/Resources/browser/features/aush...@mozilla.org.xpi

1502476051501 addons.xpi INFO Mapping clicktopl...@mozilla.org to /Applications/Firefox.app/Contents/Resources/browser/features/clicktopl...@mozilla.org.xpi

1502476051501 addons.xpi INFO Mapping e10sr...@mozilla.org to /Applications/Firefox.app/Contents/Resources/browser/features/e10sr...@mozilla.org.xpi

1502476051501 addons.xpi INFO Mapping fir...@getpocket.com to /Applications/Firefox.app/Contents/Resources/browser/features/fir...@getpocket.com.xpi

1502476051502 addons.xpi INFO Mapping followo...@mozilla.com to /Applications/Firefox.app/Contents/Resources/browser/features/followo...@mozilla.com.xpi

1502476051502 addons.xpi INFO Mapping scree...@mozilla.org to /Applications/Firefox.app/Contents/Resources/browser/features/scree...@mozilla.org.xpi

1502476051502 addons.xpi INFO Mapping shield-rec...@mozilla.org to /Applications/Firefox.app/Contents/Resources/browser/features/shield-rec...@mozilla.org.xpi

1502476051502 addons.xpi INFO Mapping webc...@mozilla.org to /Applications/Firefox.app/Contents/Resources/browser/features/webc...@mozilla.org.xpi

1502476051503 addons.xpi DEBUG New add-on aush...@mozilla.org in app-system-defaults

1502476051503 addons.xpi INFO Mapping aush...@mozilla.org to /Applications/Firefox.app/Contents/Resources/browser/features/aush...@mozilla.org.xpi

1502476051503 addons.xpi DEBUG New add-on clicktopl...@mozilla.org in app-system-defaults

1502476051504 addons.xpi INFO Mapping clicktopl...@mozilla.org to /Applications/Firefox.app/Contents/Resources/browser/features/clicktopl...@mozilla.org.xpi

1502476051504 addons.xpi DEBUG New add-on e10sr...@mozilla.org in app-system-defaults

1502476051504 addons.xpi INFO Mapping e10sr...@mozilla.org to /Applications/Firefox.app/Contents/Resources/browser/features/e10sr...@mozilla.org.xpi

1502476051504 addons.xpi DEBUG New add-on fir...@getpocket.com in app-system-defaults

1502476051505 addons.xpi INFO Mapping fir...@getpocket.com to /Applications/Firefox.app/Contents/Resources/browser/features/fir...@getpocket.com.xpi

1502476051505 addons.xpi DEBUG New add-on followo...@mozilla.com in app-system-defaults

1502476051505 addons.xpi INFO Mapping followo...@mozilla.com to /Applications/Firefox.app/Contents/Resources/browser/features/followo...@mozilla.com.xpi

1502476051505 addons.xpi DEBUG New add-on scree...@mozilla.org in app-system-defaults

1502476051506 addons.xpi INFO Mapping scree...@mozilla.org to /Applications/Firefox.app/Contents/Resources/browser/features/scree...@mozilla.org.xpi

1502476051506 addons.xpi DEBUG New add-on shield-rec...@mozilla.org in app-system-defaults

1502476051506 addons.xpi INFO Mapping shield-rec...@mozilla.org to /Applications/Firefox.app/Contents/Resources/browser/features/shield-rec...@mozilla.org.xpi

1502476051506 addons.xpi DEBUG New add-on webc...@mozilla.org in app-system-defaults

1502476051506 addons.xpi INFO Mapping webc...@mozilla.org to /Applications/Firefox.app/Contents/Resources/browser/features/webc...@mozilla.org.xpi

1502476051507 addons.xpi INFO Mapping {972ce4c6-7e08-4474-a285-3208198ce6fd} to /Applications/Firefox.app/Contents/Resources/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi

1502476051507 addons.xpi DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} in app-global

1502476051507 addons.xpi INFO Mapping {972ce4c6-7e08-4474-a285-3208198ce6fd} to /Applications/Firefox.app/Contents/Resources/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi

1502476051508 addons.xpi DEBUG getInstallState changed: true, state: {}

1502476051508 addons.xpi INFO SystemAddonInstallLocation directory is missing

1502476051515 addons.xpi-utils DEBUG Opening XPI database /var/folders/fw/vhc93khn6sb6k_pt32v6s2c80000gn/T/anonymous505903171548777814webdriver-profile/extensions.json

1502476051517 addons.xpi-utils DEBUG New add-on fxdr...@googlecode.com installed in app-profile

*** Blocklist::_loadBlocklistFromFile: blocklist is disabled

1502476051558 addons.xpi WARN Add-on fxdr...@googlecode.com is not correctly signed.

1502476051558 addons.xpi WARN Add-on fxdr...@googlecode.com is not correctly signed.

1502476051561 DeferredSave.extensions.json DEBUG Save changes

1502476051562 addons.xpi-utils DEBUG New add-on aush...@mozilla.org installed in app-system-defaults

1502476051566 DeferredSave.extensions.json DEBUG Starting timer

1502476051568 DeferredSave.extensions.json DEBUG Save changes

1502476051568 addons.xpi-utils DEBUG New add-on clicktopl...@mozilla.org installed in app-system-defaults

1502476051572 DeferredSave.extensions.json DEBUG Save changes

1502476051572 addons.xpi-utils DEBUG New add-on e10sr...@mozilla.org installed in app-system-defaults

1502476051575 DeferredSave.extensions.json DEBUG Save changes

1502476051575 addons.xpi-utils DEBUG New add-on fir...@getpocket.com installed in app-system-defaults

1502476051579 DeferredSave.extensions.json DEBUG Save changes

1502476051579 addons.xpi-utils DEBUG New add-on followo...@mozilla.com installed in app-system-defaults

1502476051584 DeferredSave.extensions.json DEBUG Save changes

1502476051584 addons.xpi-utils DEBUG New add-on scree...@mozilla.org installed in app-system-defaults

1502476051590 DeferredSave.extensions.json DEBUG Save changes

1502476051590 addons.xpi-utils DEBUG New add-on shield-rec...@mozilla.org installed in app-system-defaults

1502476051593 DeferredSave.extensions.json DEBUG Save changes

1502476051594 addons.xpi-utils DEBUG New add-on webc...@mozilla.org installed in app-system-defaults

1502476051598 DeferredSave.extensions.json DEBUG Starting write

1502476051603 DeferredSave.extensions.json DEBUG Save changes

1502476051603 DeferredSave.extensions.json DEBUG Data changed while write in progress

1502476051603 addons.xpi-utils DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} installed in app-global

1502476051606 DeferredSave.extensions.json DEBUG Save changes

1502476051606 addons.manager DEBUG Registering startup change 'installed' for fxdr...@googlecode.com

1502476051606 addons.xpi-utils DEBUG Make addon app-profile:fxdr...@googlecode.com visible

1502476051607 addons.xpi DEBUG Updating XPIState for {"id":"fxdr...@googlecode.com","syncGUID":"{3c41ed4c-4f13-1e48-a74a-971eddb4ff0b}","location":"app-profile","version":"3.4.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"defaultLocale":{"name":"Firefox WebDriver","description":"WebDriver implementation for Firefox","creator":"Simon Stewart","homepageURL":null},"visible":true,"active":false,"userDisabled":false,"appDisabled":true,"installDate":1502476051000,"updateDate":1502476051000,"applyBackgroundUpdates":1,"bootstrap":false,"path":"/var/folders/fw/vhc93khn6sb6k_pt32v6s2c80000gn/T/anonymous505903171548777814webdriver-profile/extensions/fxdr...@googlecode.com","skinnable":false,"size":3303362,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":true,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"3.0","maxVersion":"48.0"}],"targetPlatforms":[{"os":"Darwin","abi":null},{"os":"SunOS","abi":null},{"os":"FreeBSD","abi":null},{"os":"OpenBSD","abi":null},{"os":"WINNT","abi":null},{"os":"Linux","abi":null}],"multiprocessCompatible":false,"signedState":0,"seen":true,"dependencies":[],"hasEmbeddedWebExtension":false,"mpcOptedOut":false,"userPermissions":null,"icons":{},"iconURL":null,"icon64URL":null}

1502476051611 DeferredSave.extensions.json DEBUG Save changes

1502476051611 addons.manager DEBUG Registering startup change 'installed' for aush...@mozilla.org

1502476051620 addons.xpi DEBUG Loading bootstrap scope from /Applications/Firefox.app/Contents/Resources/browser/features/aush...@mozilla.org.xpi

1502476051621 addons.xpi DEBUG Calling bootstrap method install on aush...@mozilla.org version 2.0

1502476051621 addons.xpi-utils DEBUG Make addon app-system-defaults:aush...@mozilla.org visible

1502476051622 addons.xpi DEBUG Updating XPIState for {"id":"aush...@mozilla.org","syncGUID":"{097913e5-64ff-6244-8926-97721a556579}","location":"app-system-defaults","version":"2.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"defaultLocale":{"name":"Application Update Service Helper","description":"Sets value(s) in the update url based on custom checks.","creator":null,"homepageURL":null},"visible":true,"active":false,"userDisabled":false,"appDisabled":false,"installDate":1502295364000,"updateDate":1502295364000,"applyBackgroundUpdates":1,"bootstrap":true,"path":"/Applications/Firefox.app/Contents/Resources/browser/features/aush...@mozilla.org.xpi","skinnable":false,"size":8488,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"55.0.1","maxVersion":"55.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true,"dependencies":[],"hasEmbeddedWebExtension":false,"mpcOptedOut":false,"userPermissions":null,"icons":{},"iconURL":null,"icon64URL":null}

1502476051622 DeferredSave.extensions.json DEBUG Save changes

1502476051622 addons.manager DEBUG Registering startup change 'installed' for clicktopl...@mozilla.org

1502476051623 addons.xpi DEBUG Loading bootstrap scope from /Applications/Firefox.app/Contents/Resources/browser/features/clicktopl...@mozilla.org.xpi

1502476051635 addons.xpi DEBUG Calling bootstrap method install on clicktopl...@mozilla.org version 1.2

1502476051635 addons.xpi-utils DEBUG Make addon app-system-defaults:clicktopl...@mozilla.org visible

1502476051636 addons.xpi DEBUG Updating XPIState for {"id":"clicktopl...@mozilla.org","syncGUID":"{26cf7fec-6642-8d46-bc35-51e3b5076044}","location":"app-system-defaults","version":"1.2","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"defaultLocale":{"name":"Click-to-Play staged rollout","description":"Staged rollout for Click-to-Play Flash.","creator":null,"homepageURL":null},"visible":true,"active":false,"userDisabled":false,"appDisabled":false,"installDate":1502295364000,"updateDate":1502295364000,"applyBackgroundUpdates":1,"bootstrap":true,"path":"/Applications/Firefox.app/Contents/Resources/browser/features/clicktopl...@mozilla.org.xpi","skinnable":false,"size":5621,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"55.0.1","maxVersion":"55.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true,"dependencies":[],"hasEmbeddedWebExtension":false,"mpcOptedOut":false,"userPermissions":null,"icons":{},"iconURL":null,"icon64URL":null}

1502476051636 DeferredSave.extensions.json DEBUG Save changes

1502476051636 addons.manager DEBUG Registering startup change 'installed' for e10sr...@mozilla.org

1502476051637 addons.xpi DEBUG Loading bootstrap scope from /Applications/Firefox.app/Contents/Resources/browser/features/e10sr...@mozilla.org.xpi

1502476051638 addons.xpi DEBUG Calling bootstrap method install on e10sr...@mozilla.org version 2.0

1502476051640 addons.xpi-utils DEBUG Make addon app-system-defaults:e10sr...@mozilla.org visible

1502476051640 addons.xpi DEBUG Updating XPIState for {"id":"e10sr...@mozilla.org","syncGUID":"{2a541edc-d4a2-0c43-a5d9-e074c35504d2}","location":"app-system-defaults","version":"2.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"defaultLocale":{"name":"Multi-process staged rollout","description":"Staged rollout of Firefox multi-process feature.","creator":null,"homepageURL":null},"visible":true,"active":false,"userDisabled":false,"appDisabled":false,"installDate":1502295364000,"updateDate":1502295364000,"applyBackgroundUpdates":1,"bootstrap":true,"path":"/Applications/Firefox.app/Contents/Resources/browser/features/e10sr...@mozilla.org.xpi","skinnable":false,"size":13287,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"55.0.1","maxVersion":"55.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true,"dependencies":[],"hasEmbeddedWebExtension":false,"mpcOptedOut":false,"userPermissions":null,"icons":{},"iconURL":null,"icon64URL":null}

1502476051640 DeferredSave.extensions.json DEBUG Save changes

1502476051640 addons.manager DEBUG Registering startup change 'installed' for fir...@getpocket.com

1502476051641 addons.xpi DEBUG Loading bootstrap scope from /Applications/Firefox.app/Contents/Resources/browser/features/fir...@getpocket.com.xpi

1502476051647 addons.xpi DEBUG Calling bootstrap method install on fir...@getpocket.com version 1.0.5

1502476051647 addons.xpi-utils DEBUG Make addon app-system-defaults:fir...@getpocket.com visible

1502476051647 addons.xpi DEBUG Updating XPIState for {"id":"fir...@getpocket.com","syncGUID":"{1c4d384e-6dd6-b54b-82bc-4304995b3b30}","location":"app-system-defaults","version":"1.0.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"defaultLocale":{"name":"Pocket","description":"When you find something you want to view later, put it in Pocket.","creator":null,"homepageURL":null},"visible":true,"active":false,"userDisabled":false,"appDisabled":false,"installDate":1502295364000,"updateDate":1502295364000,"applyBackgroundUpdates":1,"bootstrap":true,"path":"/Applications/Firefox.app/Contents/Resources/browser/features/fir...@getpocket.com.xpi","skinnable":false,"size":862517,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"55.0.1","maxVersion":"55.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true,"dependencies":[],"hasEmbeddedWebExtension":false,"mpcOptedOut":false,"userPermissions":null,"icons":{},"iconURL":null,"icon64URL":null}

1502476051648 DeferredSave.extensions.json DEBUG Save changes

1502476051648 addons.manager DEBUG Registering startup change 'installed' for followo...@mozilla.com

1502476051649 addons.xpi DEBUG Loading bootstrap scope from /Applications/Firefox.app/Contents/Resources/browser/features/followo...@mozilla.com.xpi

1502476051650 addons.xpi DEBUG Calling bootstrap method install on followo...@mozilla.com version 0.9.1

1502476051650 addons.xpi-utils DEBUG Make addon app-system-defaults:followo...@mozilla.com visible

1502476051651 addons.xpi DEBUG Updating XPIState for {"id":"followo...@mozilla.com","syncGUID":"{926a5b24-5b7b-c84a-b67d-53b567348326}","location":"app-system-defaults","version":"0.9.1","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"defaultLocale":{"name":"Follow-on Search Telemetry","description":null,"creator":null,"homepageURL":null},"visible":true,"active":false,"userDisabled":false,"appDisabled":false,"installDate":1502295364000,"updateDate":1502295364000,"applyBackgroundUpdates":1,"bootstrap":true,"path":"/Applications/Firefox.app/Contents/Resources/browser/features/followo...@mozilla.com.xpi","skinnable":false,"size":16730,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"52.0","maxVersion":"59.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true,"dependencies":[],"hasEmbeddedWebExtension":false,"mpcOptedOut":false,"userPermissions":null,"icons":{},"iconURL":null,"icon64URL":null}

1502476051652 DeferredSave.extensions.json DEBUG Save changes

1502476051652 addons.manager DEBUG Registering startup change 'installed' for scree...@mozilla.org

1502476051652 addons.xpi DEBUG Loading bootstrap scope from /Applications/Firefox.app/Contents/Resources/browser/features/scree...@mozilla.org.xpi

1502476051654 addons.xpi DEBUG Calling bootstrap method install on scree...@mozilla.org version 10.10.0

1502476051654 addons.xpi-utils DEBUG Make addon app-system-defaults:scree...@mozilla.org visible

1502476051655 addons.xpi DEBUG Updating XPIState for {"id":"scree...@mozilla.org","syncGUID":"{0258fb50-17e6-a74c-876b-75aa32ef4e67}","location":"app-system-defaults","version":"10.10.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"defaultLocale":{"name":"Firefox Screenshots","description":null,"creator":null,"homepageURL":"https://pageshot.net/"},"visible":true,"active":false,"userDisabled":false,"appDisabled":false,"installDate":1502295365000,"updateDate":1502295365000,"applyBackgroundUpdates":1,"bootstrap":true,"path":"/Applications/Firefox.app/Contents/Resources/browser/features/scree...@mozilla.org.xpi","skinnable":false,"size":651762,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"51.0a1","maxVersion":"*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true,"dependencies":[],"hasEmbeddedWebExtension":false,"mpcOptedOut":false,"userPermissions":null,"icons":{},"iconURL":null,"icon64URL":null}

1502476051655 DeferredSave.extensions.json DEBUG Save changes

1502476051655 addons.manager DEBUG Registering startup change 'installed' for shield-rec...@mozilla.org

1502476051656 addons.xpi DEBUG Loading bootstrap scope from /Applications/Firefox.app/Contents/Resources/browser/features/shield-rec...@mozilla.org.xpi

1502476051657 addons.xpi DEBUG Calling bootstrap method install on shield-rec...@mozilla.org version 55.1

1502476051657 addons.xpi-utils DEBUG Make addon app-system-defaults:shield-rec...@mozilla.org visible

1502476051657 addons.xpi DEBUG Updating XPIState for {"id":"shield-rec...@mozilla.org","syncGUID":"{5a507397-117b-3345-8d00-abc62a003aaf}","location":"app-system-defaults","version":"55.1","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"defaultLocale":{"name":"Shield Recipe Client","description":"Client to download and run recipes for SHIELD, Heartbeat, etc.","creator":null,"homepageURL":null},"visible":true,"active":false,"userDisabled":false,"appDisabled":false,"installDate":1502295365000,"updateDate":1502295365000,"applyBackgroundUpdates":1,"bootstrap":true,"path":"/Applications/Firefox.app/Contents/Resources/browser/features/shield-rec...@mozilla.org.xpi","skinnable":false,"size":140305,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"55.0.1","maxVersion":"55.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true,"dependencies":[],"hasEmbeddedWebExtension":false,"mpcOptedOut":false,"userPermissions":null,"icons":{},"iconURL":null,"icon64URL":null}

1502476051657 DeferredSave.extensions.json DEBUG Save changes

1502476051657 addons.manager DEBUG Registering startup change 'installed' for webc...@mozilla.org

1502476051658 addons.xpi DEBUG Loading bootstrap scope from /Applications/Firefox.app/Contents/Resources/browser/features/webc...@mozilla.org.xpi

1502476051659 addons.xpi DEBUG Calling bootstrap method install on webc...@mozilla.org version 1.1

1502476051659 addons.xpi-utils DEBUG Make addon app-system-defaults:webc...@mozilla.org visible

1502476051659 addons.xpi DEBUG Updating XPIState for {"id":"webc...@mozilla.org","syncGUID":"{c1e04296-07f9-3a40-86de-c062a8c6548f}","location":"app-system-defaults","version":"1.1","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"defaultLocale":{"name":"Web Compat","description":"Urgent post-release fixes for web compatibility.","creator":null,"homepageURL":null},"visible":true,"active":false,"userDisabled":false,"appDisabled":false,"installDate":1502295365000,"updateDate":1502295365000,"applyBackgroundUpdates":1,"bootstrap":true,"path":"/Applications/Firefox.app/Contents/Resources/browser/features/webc...@mozilla.org.xpi","skinnable":false,"size":8992,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"55.0.1","maxVersion":"55.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true,"dependencies":[],"hasEmbeddedWebExtension":false,"mpcOptedOut":false,"userPermissions":null,"icons":{},"iconURL":null,"icon64URL":null}

1502476051660 DeferredSave.extensions.json DEBUG Save changes

1502476051660 addons.xpi-utils DEBUG Make addon app-global:{972ce4c6-7e08-4474-a285-3208198ce6fd} visible

1502476051660 addons.xpi DEBUG Updating XPIState for {"id":"{972ce4c6-7e08-4474-a285-3208198ce6fd}","syncGUID":"{d599dc5a-6cb6-6c4b-91c5-a218f1bd558a}","location":"app-global","version":"55.0.1","type":"theme","internalName":"classic/1.0","updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"optionsBrowserStyle":null,"aboutURL":null,"defaultLocale":{"name":"Default","description":"The default theme.","creator":"Mozilla","homepageURL":null,"contributors":["Mozilla Contributors"]},"visible":true,"active":false,"userDisabled":false,"appDisabled":false,"installDate":1502295364000,"updateDate":1502295364000,"applyBackgroundUpdates":1,"path":"/Applications/Firefox.app/Contents/Resources/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","skinnable":true,"size":3588,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"55.0.1","maxVersion":"55.0.1"}],"targetPlatforms":[],"seen":true,"dependencies":[],"hasEmbeddedWebExtension":false,"userPermissions":null,"icons":{},"iconURL":"chrome://browser/content/default-theme-icon.svg","icon64URL":null}

1502476051661 DeferredSave.extensions.json DEBUG Save changes

1502476051661 addons.xpi DEBUG Updating XPIState for {"id":"fxdr...@googlecode.com","syncGUID":"{3c41ed4c-4f13-1e48-a74a-971eddb4ff0b}","location":"app-profile","version":"3.4.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"defaultLocale":{"name":"Firefox WebDriver","description":"WebDriver implementation for Firefox","creator":"Simon Stewart","homepageURL":null},"visible":true,"active":false,"userDisabled":false,"appDisabled":true,"installDate":1502476051000,"updateDate":1502476051000,"applyBackgroundUpdates":1,"bootstrap":false,"path":"/var/folders/fw/vhc93khn6sb6k_pt32v6s2c80000gn/T/anonymous505903171548777814webdriver-profile/extensions/fxdr...@googlecode.com","skinnable":false,"size":3303362,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":true,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"3.0","maxVersion":"48.0"}],"targetPlatforms":[{"os":"Darwin","abi":null},{"os":"SunOS","abi":null},{"os":"FreeBSD","abi":null},{"os":"OpenBSD","abi":null},{"os":"WINNT","abi":null},{"os":"Linux","abi":null}],"multiprocessCompatible":false,"signedState":0,"seen":true,"dependencies":[],"hasEmbeddedWebExtension":false,"mpcOptedOut":false,"userPermissions":null,"icons":{},"iconURL":null,"icon64URL":null}

1502476051661 addons.xpi DEBUG Updating XPIState for {"id":"aush...@mozilla.org","syncGUID":"{097913e5-64ff-6244-8926-97721a556579}","location":"app-system-defaults","version":"2.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"defaultLocale":{"name":"Application Update Service Helper","description":"Sets value(s) in the update url based on custom checks.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"installDate":1502295364000,"updateDate":1502295364000,"applyBackgroundUpdates":1,"bootstrap":true,"path":"/Applications/Firefox.app/Contents/Resources/browser/features/aush...@mozilla.org.xpi","skinnable":false,"size":8488,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"55.0.1","maxVersion":"55.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true,"dependencies":[],"hasEmbeddedWebExtension":false,"mpcOptedOut":false,"userPermissions":null,"icons":{},"iconURL":null,"icon64URL":null}

1502476051662 addons.xpi DEBUG Updating XPIState for {"id":"clicktopl...@mozilla.org","syncGUID":"{26cf7fec-6642-8d46-bc35-51e3b5076044}","location":"app-system-defaults","version":"1.2","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"defaultLocale":{"name":"Click-to-Play staged rollout","description":"Staged rollout for Click-to-Play Flash.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"installDate":1502295364000,"updateDate":1502295364000,"applyBackgroundUpdates":1,"bootstrap":true,"path":"/Applications/Firefox.app/Contents/Resources/browser/features/clicktopl...@mozilla.org.xpi","skinnable":false,"size":5621,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"55.0.1","maxVersion":"55.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true,"dependencies":[],"hasEmbeddedWebExtension":false,"mpcOptedOut":false,"userPermissions":null,"icons":{},"iconURL":null,"icon64URL":null}

1502476051662 addons.xpi DEBUG Updating XPIState for {"id":"e10sr...@mozilla.org","syncGUID":"{2a541edc-d4a2-0c43-a5d9-e074c35504d2}","location":"app-system-defaults","version":"2.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"defaultLocale":{"name":"Multi-process staged rollout","description":"Staged rollout of Firefox multi-process feature.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"installDate":1502295364000,"updateDate":1502295364000,"applyBackgroundUpdates":1,"bootstrap":true,"path":"/Applications/Firefox.app/Contents/Resources/browser/features/e10sr...@mozilla.org.xpi","skinnable":false,"size":13287,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"55.0.1","maxVersion":"55.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true,"dependencies":[],"hasEmbeddedWebExtension":false,"mpcOptedOut":false,"userPermissions":null,"icons":{},"iconURL":null,"icon64URL":null}

1502476051662 addons.xpi DEBUG Updating XPIState for {"id":"fir...@getpocket.com","syncGUID":"{1c4d384e-6dd6-b54b-82bc-4304995b3b30}","location":"app-system-defaults","version":"1.0.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"defaultLocale":{"name":"Pocket","description":"When you find something you want to view later, put it in Pocket.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"installDate":1502295364000,"updateDate":1502295364000,"applyBackgroundUpdates":1,"bootstrap":true,"path":"/Applications/Firefox.app/Contents/Resources/browser/features/fir...@getpocket.com.xpi","skinnable":false,"size":862517,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"55.0.1","maxVersion":"55.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true,"dependencies":[],"hasEmbeddedWebExtension":false,"mpcOptedOut":false,"userPermissions":null,"icons":{},"iconURL":null,"icon64URL":null}

1502476051662 addons.xpi DEBUG Updating XPIState for {"id":"followo...@mozilla.com","syncGUID":"{926a5b24-5b7b-c84a-b67d-53b567348326}","location":"app-system-defaults","version":"0.9.1","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"defaultLocale":{"name":"Follow-on Search Telemetry","description":null,"creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"installDate":1502295364000,"updateDate":1502295364000,"applyBackgroundUpdates":1,"bootstrap":true,"path":"/Applications/Firefox.app/Contents/Resources/browser/features/followo...@mozilla.com.xpi","skinnable":false,"size":16730,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"52.0","maxVersion":"59.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true,"dependencies":[],"hasEmbeddedWebExtension":false,"mpcOptedOut":false,"userPermissions":null,"icons":{},"iconURL":null,"icon64URL":null}

1502476051662 addons.xpi DEBUG Updating XPIState for {"id":"scree...@mozilla.org","syncGUID":"{0258fb50-17e6-a74c-876b-75aa32ef4e67}","location":"app-system-defaults","version":"10.10.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"defaultLocale":{"name":"Firefox Screenshots","description":null,"creator":null,"homepageURL":"https://pageshot.net/"},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"installDate":1502295365000,"updateDate":1502295365000,"applyBackgroundUpdates":1,"bootstrap":true,"path":"/Applications/Firefox.app/Contents/Resources/browser/features/scree...@mozilla.org.xpi","skinnable":false,"size":651762,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"51.0a1","maxVersion":"*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true,"dependencies":[],"hasEmbeddedWebExtension":false,"mpcOptedOut":false,"userPermissions":null,"icons":{},"iconURL":null,"icon64URL":null}

1502476051662 addons.xpi DEBUG Updating XPIState for {"id":"shield-rec...@mozilla.org","syncGUID":"{5a507397-117b-3345-8d00-abc62a003aaf}","location":"app-system-defaults","version":"55.1","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"defaultLocale":{"name":"Shield Recipe Client","description":"Client to download and run recipes for SHIELD, Heartbeat, etc.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"installDate":1502295365000,"updateDate":1502295365000,"applyBackgroundUpdates":1,"bootstrap":true,"path":"/Applications/Firefox.app/Contents/Resources/browser/features/shield-rec...@mozilla.org.xpi","skinnable":false,"size":140305,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"55.0.1","maxVersion":"55.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true,"dependencies":[],"hasEmbeddedWebExtension":false,"mpcOptedOut":false,"userPermissions":null,"icons":{},"iconURL":null,"icon64URL":null}

1502476051662 addons.xpi DEBUG Updating XPIState for {"id":"webc...@mozilla.org","syncGUID":"{c1e04296-07f9-3a40-86de-c062a8c6548f}","location":"app-system-defaults","version":"1.1","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"defaultLocale":{"name":"Web Compat","description":"Urgent post-release fixes for web compatibility.","creator":null,"homepageURL":null},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"installDate":1502295365000,"updateDate":1502295365000,"applyBackgroundUpdates":1,"bootstrap":true,"path":"/Applications/Firefox.app/Contents/Resources/browser/features/webc...@mozilla.org.xpi","skinnable":false,"size":8992,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"55.0.1","maxVersion":"55.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true,"dependencies":[],"hasEmbeddedWebExtension":false,"mpcOptedOut":false,"userPermissions":null,"icons":{},"iconURL":null,"icon64URL":null}

1502476051662 addons.xpi DEBUG Updating XPIState for {"id":"{972ce4c6-7e08-4474-a285-3208198ce6fd}","syncGUID":"{d599dc5a-6cb6-6c4b-91c5-a218f1bd558a}","location":"app-global","version":"55.0.1","type":"theme","internalName":"classic/1.0","updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"optionsBrowserStyle":null,"aboutURL":null,"defaultLocale":{"name":"Default","description":"The default theme.","creator":"Mozilla","homepageURL":null,"contributors":["Mozilla Contributors"]},"visible":true,"active":true,"userDisabled":false,"appDisabled":false,"installDate":1502295364000,"updateDate":1502295364000,"applyBackgroundUpdates":1,"path":"/Applications/Firefox.app/Contents/Resources/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","skinnable":true,"size":3588,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"55.0.1","maxVersion":"55.0.1"}],"targetPlatforms":[],"seen":true,"dependencies":[],"hasEmbeddedWebExtension":false,"userPermissions":null,"icons":{},"iconURL":"chrome://browser/content/default-theme-icon.svg","icon64URL":null}

1502476051663 DeferredSave.extensions.json DEBUG Save changes

1502476051664 addons.xpi DEBUG Updating database with changes to installed add-ons

1502476051664 addons.xpi-utils DEBUG Updating add-on states

1502476051668 addons.xpi DEBUG Registering manifest for /Applications/Firefox.app/Contents/Resources/browser/features/aush...@mozilla.org.xpi

1502476051668 addons.xpi DEBUG Calling bootstrap method startup on aush...@mozilla.org version 2.0

1502476051669 addons.xpi DEBUG Registering manifest for /Applications/Firefox.app/Contents/Resources/browser/features/clicktopl...@mozilla.org.xpi

1502476051669 addons.xpi DEBUG Calling bootstrap method startup on clicktopl...@mozilla.org version 1.2

1502476051707 addons.xpi DEBUG Registering manifest for /Applications/Firefox.app/Contents/Resources/browser/features/e10sr...@mozilla.org.xpi

1502476051708 addons.xpi DEBUG Calling bootstrap method startup on e10sr...@mozilla.org version 2.0

1502476051708 addons.xpi DEBUG Registering manifest for /Applications/Firefox.app/Contents/Resources/browser/features/fir...@getpocket.com.xpi

1502476051708 addons.xpi DEBUG Calling bootstrap method startup on fir...@getpocket.com version 1.0.5

1502476051747 addons.xpi DEBUG Registering manifest for /Applications/Firefox.app/Contents/Resources/browser/features/followo...@mozilla.com.xpi

1502476051747 addons.xpi DEBUG Calling bootstrap method startup on followo...@mozilla.com version 0.9.1

1502476051747 addons.xpi DEBUG Registering manifest for /Applications/Firefox.app/Contents/Resources/browser/features/scree...@mozilla.org.xpi

1502476051748 addons.xpi DEBUG Calling bootstrap method startup on scree...@mozilla.org version 10.10.0

1502476051748 addons.xpi DEBUG Registering manifest for /Applications/Firefox.app/Contents/Resources/browser/features/shield-rec...@mozilla.org.xpi

1502476051748 addons.xpi DEBUG Calling bootstrap method startup on shield-rec...@mozilla.org version 55.1

1502476051757 addons.xpi DEBUG Registering manifest for /Applications/Firefox.app/Contents/Resources/browser/features/webc...@mozilla.org.xpi

1502476051757 addons.xpi DEBUG Calling bootstrap method startup on webc...@mozilla.org version 1.1

1502476051762 addons.manager DEBUG Registering shutdown blocker for XPIProvider

1502476051763 addons.manager DEBUG Provider finished startup: XPIProvider

1502476051763 addons.manager DEBUG Starting provider: LightweightThemeManager

1502476051763 addons.manager DEBUG Registering shutdown blocker for LightweightThemeManager

1502476051763 addons.manager DEBUG Provider finished startup: LightweightThemeManager

1502476051763 addons.manager DEBUG Starting provider: GMPProvider

1502476051767 addons.manager DEBUG Registering shutdown blocker for GMPProvider

1502476051767 addons.manager DEBUG Provider finished startup: GMPProvider

1502476051767 addons.manager DEBUG Starting provider: PluginProvider

1502476051767 addons.manager DEBUG Registering shutdown blocker for PluginProvider

1502476051767 addons.manager DEBUG Provider finished startup: PluginProvider

1502476051768 addons.manager DEBUG Completed startup sequence

1502476052165 DeferredSave.extensions.json DEBUG Write succeeded

1502476052165 addons.xpi-utils DEBUG XPI Database saved, setting schema version preference to 21

1502476052165 DeferredSave.extensions.json DEBUG Starting timer

1502476052186 addons.repository DEBUG No addons.json found.

1502476052186 DeferredSave.addons.json DEBUG Save changes

1502476052188 DeferredSave.addons.json DEBUG Starting timer

1502476052219 addons.manager DEBUG Starting provider: PreviousExperimentProvider

1502476052219 addons.manager DEBUG Registering shutdown blocker for PreviousExperimentProvider

1502476052220 addons.manager DEBUG Provider finished startup: PreviousExperimentProvider

1502476052229 DeferredSave.extensions.json DEBUG Starting write

1502476052242 DeferredSave.addons.json DEBUG Starting write

1502476052243 DeferredSave.extensions.json DEBUG Write succeeded

1502476052251 DeferredSave.addons.json DEBUG Write succeeded

1502476053260 addons.manager DEBUG Starting provider: <unnamed-provider>

1502476053260 addons.manager DEBUG Registering shutdown blocker for <unnamed-provider>

1502476053260 addons.manager DEBUG Provider finished startup: <unnamed-provider>

1502476053263 addons.xpi INFO Mapping fxdr...@googlecode.com to /var/folders/fw/vhc93khn6sb6k_pt32v6s2c80000gn/T/anonymous505903171548777814webdriver-profile/extensions/fxdr...@googlecode.com

1502476053263 addons.xpi DEBUG Ignoring file entry whose name is not a valid add-on ID: /var/folders/fw/vhc93khn6sb6k_pt32v6s2c80000gn/T/anonymous505903171548777814webdriver-profile/extensions/webdriver-staging

1502476053263 addons.xpi DEBUG Existing add-on fxdr...@googlecode.com in app-profile

1502476053264 addons.xpi INFO Mapping aush...@mozilla.org to /Applications/Firefox.app/Contents/Resources/browser/features/aush...@mozilla.org.xpi

1502476053265 addons.xpi INFO Mapping clicktopl...@mozilla.org to /Applications/Firefox.app/Contents/Resources/browser/features/clicktopl...@mozilla.org.xpi

1502476053265 addons.xpi INFO Mapping e10sr...@mozilla.org to /Applications/Firefox.app/Contents/Resources/browser/features/e10sr...@mozilla.org.xpi

1502476053266 addons.xpi INFO Mapping fir...@getpocket.com to /Applications/Firefox.app/Contents/Resources/browser/features/fir...@getpocket.com.xpi

1502476053266 addons.xpi INFO Mapping followo...@mozilla.com to /Applications/Firefox.app/Contents/Resources/browser/features/followo...@mozilla.com.xpi

1502476053266 addons.xpi INFO Mapping scree...@mozilla.org to /Applications/Firefox.app/Contents/Resources/browser/features/scree...@mozilla.org.xpi

1502476053266 addons.xpi INFO Mapping shield-rec...@mozilla.org to /Applications/Firefox.app/Contents/Resources/browser/features/shield-rec...@mozilla.org.xpi

1502476053266 addons.xpi INFO Mapping webc...@mozilla.org to /Applications/Firefox.app/Contents/Resources/browser/features/webc...@mozilla.org.xpi

1502476053266 addons.xpi DEBUG Existing add-on aush...@mozilla.org in app-system-defaults

1502476053266 addons.xpi DEBUG Existing add-on clicktopl...@mozilla.org in app-system-defaults

1502476053267 addons.xpi DEBUG Existing add-on e10sr...@mozilla.org in app-system-defaults

1502476053267 addons.xpi DEBUG Existing add-on fir...@getpocket.com in app-system-defaults

1502476053267 addons.xpi DEBUG Existing add-on followo...@mozilla.com in app-system-defaults

1502476053267 addons.xpi DEBUG Existing add-on scree...@mozilla.org in app-system-defaults

1502476053267 addons.xpi DEBUG Existing add-on shield-rec...@mozilla.org in app-system-defaults

1502476053267 addons.xpi DEBUG Existing add-on webc...@mozilla.org in app-system-defaults

1502476053268 addons.xpi INFO Mapping {972ce4c6-7e08-4474-a285-3208198ce6fd} to /Applications/Firefox.app/Contents/Resources/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi

1502476053268 addons.xpi DEBUG Existing add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} in app-global

1502476053268 addons.xpi DEBUG getInstallState changed: false, state: {}

1502476053348 addons.productaddons INFO sending request to: https://aus5.mozilla.org/update/3/GMP/55.0.1/20170809080250/Darwin_x86_64-gcc3/en-US/release/Darwin%2016.3.0/default/default/update.xml

2017-08-11 14:27:33.451 plugin-container[1654:71236] *** CFMessagePort: bootstrap_register(): failed 1100 (0x44c) 'Permission denied', port = 0x9737, name = 'com.apple.tsm.portname'

See /usr/include/servers/bootstrap_defs.h for the error codes.

2017-08-11 14:27:33.454 plugin-container[1654:71236] *** CFMessagePort: bootstrap_register(): failed 1100 (0x44c) 'Permission denied', port = 0x9a03, name = 'com.apple.CFPasteboardClient'

See /usr/include/servers/bootstrap_defs.h for the error codes.

1502476053709 addons.productaddons INFO Completed downloading document

1502476054057 addons.productaddons INFO downloadXHR File download. status=200

1502476054059 addons.productaddons INFO Downloaded file will be saved to /var/folders/fw/vhc93khn6sb6k_pt32v6s2c80000gn/T/tmpaddon

1502476055455 addons.productaddons INFO downloadXHR File download. status=200

1502476055457 addons.productaddons INFO Downloaded file will be saved to /var/folders/fw/vhc93khn6sb6k_pt32v6s2c80000gn/T/tmpaddon

[main] ERROR net.thucydides.core.webdriver.WebDriverFacade - FAILED TO CREATE NEW WEBDRIVER_DRIVER INSTANCE class org.openqa.selenium.firefox.FirefoxDriver: Could not instantiate new WebDriver instance of type class org.openqa.selenium.firefox.FirefoxDriver (Could not start a new session. Possible causes are invalid address of the remote server or browser start-up failure.

at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)

at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)

at java.lang.reflect.Method.invoke(Method.java:498)

at cucumber.runtime.Utils$1.call(Utils.java:40)

at cucumber.runtime.Timeout.timeout(Timeout.java:16)

at cucumber.runtime.Utils.invoke(Utils.java:34)

at cucumber.runtime.java.JavaStepDefinition.execute(JavaStepDefinition.java:38)

at cucumber.runtime.StepDefinitionMatch.runStep(StepDefinitionMatch.java:37)

at cucumber.runtime.Runtime.runStep(Runtime.java:300)

at cucumber.runtime.model.StepContainer.runStep(StepContainer.java:44)

at cucumber.runtime.model.StepContainer.runSteps(StepContainer.java:39)

at cucumber.runtime.model.CucumberScenario.run(CucumberScenario.java:44)

at cucumber.runtime.model.CucumberFeature.run(CucumberFeature.java:165)

at cucumber.runtime.Runtime.run(Runtime.java:122)

at cucumber.api.cli.Main.run(Main.java:36)

at cucumber.api.cli.Main.main(Main.java:18)

Caused by: org.openqa.selenium.remote.UnreachableBrowserException: Could not start a new session. Possible causes are invalid address of the remote server or browser start-up failure.

Build info: version: '3.4.0', revision: 'unknown', time: 'unknown'

System info: host: 'Macbook.home', ip: 'fe80:0:0:0:106a:64a0:bab4:4158%en0', os.name: 'Mac OS X', os.arch: 'x86_64', os.version: '10.12.2', java.version: '1.8.0_101'

Driver info: driver.version: FirefoxDriver

at org.openqa.selenium.remote.RemoteWebDriver.execute(RemoteWebDriver.java:658)

at org.openqa.selenium.remote.RemoteWebDriver.startSession(RemoteWebDriver.java:250)

at org.openqa.selenium.remote.RemoteWebDriver.startSession(RemoteWebDriver.java:236)

at org.openqa.selenium.remote.RemoteWebDriver.<init>(RemoteWebDriver.java:137)

at org.openqa.selenium.firefox.FirefoxDriver.<init>(FirefoxDriver.java:191)

at org.openqa.selenium.firefox.FirefoxDriver.<init>(FirefoxDriver.java:108)

at org.openqa.selenium.firefox.FirefoxDriver.<init>(FirefoxDriver.java:137)

at net.serenitybdd.core.webdriver.driverproviders.FirefoxDriverProvider.newFirefoxDriver(FirefoxDriverProvider.java:69)

at net.serenitybdd.core.webdriver.driverproviders.FirefoxDriverProvider.newInstance(FirefoxDriverProvider.java:52)

at net.thucydides.core.webdriver.WebDriverFactory.newWebdriverInstance(WebDriverFactory.java:125)

... 36 more

Caused by: java.lang.NullPointerException

at org.openqa.selenium.remote.service.DriverService.waitUntilAvailable(DriverService.java:192)

at org.openqa.selenium.firefox.XpiDriverService.start(XpiDriverService.java:94)

at org.openqa.selenium.remote.service.DriverCommandExecutor.execute(DriverCommandExecutor.java:78)

at org.openqa.selenium.remote.RemoteWebDriver.execute(RemoteWebDriver.java:637)

... 45 more

      at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)

      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)

      at java.lang.reflect.Method.invoke(Method.java:498)

      at cucumber.runtime.Utils$1.call(Utils.java:40)

      at cucumber.runtime.Timeout.timeout(Timeout.java:16)

      at cucumber.runtime.Utils.invoke(Utils.java:34)

      at cucumber.runtime.java.JavaStepDefinition.execute(JavaStepDefinition.java:38)

      at cucumber.runtime.StepDefinitionMatch.runStep(StepDefinitionMatch.java:37)

      at cucumber.runtime.Runtime.runStep(Runtime.java:300)

      at cucumber.runtime.model.StepContainer.runStep(StepContainer.java:44)

      at cucumber.runtime.model.StepContainer.runSteps(StepContainer.java:39)

      at cucumber.runtime.model.CucumberScenario.run(CucumberScenario.java:44)

      at cucumber.runtime.model.CucumberFeature.run(CucumberFeature.java:165)

      at cucumber.runtime.Runtime.run(Runtime.java:122)

      at cucumber.api.cli.Main.run(Main.java:36)

      at cucumber.api.cli.Main.main(Main.java:18)

      Caused by: org.openqa.selenium.remote.UnreachableBrowserException: Could not start a new session. Possible causes are invalid address of the remote server or browser start-up failure.

      Build info: version: '3.4.0', revision: 'unknown', time: 'unknown'

      System info: host: 'Macbook.home', ip: 'fe80:0:0:0:106a:64a0:bab4:4158%en0', os.name: 'Mac OS X', os.arch: 'x86_64', os.version: '10.12.2', java.version: '1.8.0_101'

      Driver info: driver.version: FirefoxDriver

      at org.openqa.selenium.remote.RemoteWebDriver.execute(RemoteWebDriver.java:658)

      at org.openqa.selenium.remote.RemoteWebDriver.startSession(RemoteWebDriver.java:250)

      at org.openqa.selenium.remote.RemoteWebDriver.startSession(RemoteWebDriver.java:236)

      at org.openqa.selenium.remote.RemoteWebDriver.<init>(RemoteWebDriver.java:137)

      at org.openqa.selenium.firefox.FirefoxDriver.<init>(FirefoxDriver.java:191)

      at org.openqa.selenium.firefox.FirefoxDriver.<init>(FirefoxDriver.java:108)

      at org.openqa.selenium.firefox.FirefoxDriver.<init>(FirefoxDriver.java:137)

      at net.serenitybdd.core.webdriver.driverproviders.FirefoxDriverProvider.newFirefoxDriver(FirefoxDriverProvider.java:69)

      at net.serenitybdd.core.webdriver.driverproviders.FirefoxDriverProvider.newInstance(FirefoxDriverProvider.java:52)

      at net.thucydides.core.webdriver.WebDriverFactory.newWebdriverInstance(WebDriverFactory.java:125)

      ... 36 more

      Caused by: java.lang.NullPointerException

      at org.openqa.selenium.remote.service.DriverService.waitUntilAvailable(DriverService.java:192)

      at org.openqa.selenium.firefox.XpiDriverService.start(XpiDriverService.java:94)

      at org.openqa.selenium.remote.service.DriverCommandExecutor.execute(DriverCommandExecutor.java:78)

      at org.openqa.selenium.remote.RemoteWebDriver.execute(RemoteWebDriver.java:637)

      ... 45 more


    Then user lands on the "Home" page            # DefinitionSteps.user_lands_on_pageX(String)


Failed scenarios:

/Users/john/workspace/Future Enhancement/src/test/resources/features/admin/user_management/user_Login_authentication/Futute_Enhancement.feature:9 # Scenario: Amazon User Login Authentication


1 Scenarios (1 failed)

2 Steps (1 failed, 1 skipped)

0m21.455s

at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)

at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)

at java.lang.reflect.Method.invoke(Method.java:498)

at cucumber.runtime.Utils$1.call(Utils.java:40)

at cucumber.runtime.Timeout.timeout(Timeout.java:16)

at cucumber.runtime.Utils.invoke(Utils.java:34)

at cucumber.runtime.java.JavaStepDefinition.execute(JavaStepDefinition.java:38)

at cucumber.runtime.StepDefinitionMatch.runStep(StepDefinitionMatch.java:37)

at cucumber.runtime.Runtime.runStep(Runtime.java:300)

at cucumber.runtime.model.StepContainer.runStep(StepContainer.java:44)

at cucumber.runtime.model.StepContainer.runSteps(StepContainer.java:39)

at cucumber.runtime.model.CucumberScenario.run(CucumberScenario.java:44)

at cucumber.runtime.model.CucumberFeature.run(CucumberFeature.java:165)

at cucumber.runtime.Runtime.run(Runtime.java:122)

at cucumber.api.cli.Main.run(Main.java:36)

at cucumber.api.cli.Main.main(Main.java:18)

Caused by: org.openqa.selenium.remote.UnreachableBrowserException: Could not start a new session. Possible causes are invalid address of the remote server or browser start-up failure.

Build info: version: '3.4.0', revision: 'unknown', time: 'unknown'

System info: host: 'Macbook.home', ip: 'fe80:0:0:0:106a:64a0:bab4:4158%en0', os.name: 'Mac OS X', os.arch: 'x86_64', os.version: '10.12.2', java.version: '1.8.0_101'

Driver info: driver.version: FirefoxDriver

at org.openqa.selenium.remote.RemoteWebDriver.execute(RemoteWebDriver.java:658)

at org.openqa.selenium.remote.RemoteWebDriver.startSession(RemoteWebDriver.java:250)

at org.openqa.selenium.remote.RemoteWebDriver.startSession(RemoteWebDriver.java:236)

at org.openqa.selenium.remote.RemoteWebDriver.<init>(RemoteWebDriver.java:137)

at org.openqa.selenium.firefox.FirefoxDriver.<init>(FirefoxDriver.java:191)

at org.openqa.selenium.firefox.FirefoxDriver.<init>(FirefoxDriver.java:108)

at org.openqa.selenium.firefox.FirefoxDriver.<init>(FirefoxDriver.java:137)

at net.serenitybdd.core.webdriver.driverproviders.FirefoxDriverProvider.newFirefoxDriver(FirefoxDriverProvider.java:69)

at net.serenitybdd.core.webdriver.driverproviders.FirefoxDriverProvider.newInstance(FirefoxDriverProvider.java:52)

at net.thucydides.core.webdriver.WebDriverFactory.newWebdriverInstance(WebDriverFactory.java:125)

... 36 more

Caused by: java.lang.NullPointerException

at org.openqa.selenium.remote.service.DriverService.waitUntilAvailable(DriverService.java:192)

at org.openqa.selenium.firefox.XpiDriverService.start(XpiDriverService.java:94)

at org.openqa.selenium.remote.service.DriverCommandExecutor.execute(DriverCommandExecutor.java:78)

at org.openqa.selenium.remote.RemoteWebDriver.execute(RemoteWebDriver.java:637)

... 45 more



SeleniumWhat?

unread,
Aug 11, 2017, 3:01:37 PM8/11/17
to Serenity BDD Users Group
Hi John
  It did bring up the browser.  So... it can see the Firefox browser and the Gecko.  But it erred out...

  net.thucydides.core.webdriver.UnsupportedDriverException: Could not instantiate class org.openqa.selenium.firefox.FirefoxDriver

  Would you please take a look at my POM.xml again and see if I set the web driver correctly?  I used the old setup which is
  <webdriver.driver>firefox</webdriver.driver>

   <systemPropertyVariables>

       <webdriver.driver>${webdriver.driver}</webdriver.driver>

   </systemPropertyVariables>


  Thanks a lot for your help John!  I really appreciate your help here!

  Regards

  J.N

John Smart

unread,
Aug 11, 2017, 3:04:03 PM8/11/17
to SeleniumWhat?, Serenity BDD Users Group
When the browser opens but stays blank, it's often an issue with WebDriver/Firefox compatibility. What versions of gecko and Firefox are you using?

--
You received this message because you are subscribed to the Google Groups "Serenity BDD Users Group" group.
To unsubscribe from this group and stop receiving emails from it, send an email to thucydides-use...@googlegroups.com.
To post to this group, send email to thucydid...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

SeleniumWhat?

unread,
Aug 11, 2017, 3:14:18 PM8/11/17
to Serenity BDD Users Group
Hi John,

1 -  I download the Gecko from Mozilla/Github:

2 - Firefox Browser version = 55.0.1 (64-bit)

  J.N


Reply all
Reply to author
Forward
0 new messages