testng-team / testng

TestNG testing framework
https://testng.org
Apache License 2.0
1.98k stars 1.02k forks source link

Error "DataProvider must return either Object[][] or Iterator<Object>[], not class [[Ljava.lang.Object;" #1476

Closed NewUser310 closed 7 years ago

NewUser310 commented 7 years ago

I am new to Selenium. I was using below code and getting the error as DataProvider must return either Object[][] or Iterator<Object>[], not class [[Ljava.lang.Object;

package example2;

import java.util.concurrent.TimeUnit;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.firefox.FirefoxDriver;
import org.testng.Assert;
import org.testng.ITestContext;
import org.testng.annotations.BeforeTest;
import org.testng.annotations.DataProvider;
import org.testng.annotations.Test;

public class Practice {
    WebDriver driver;
    String driverPath = "C:\\geckodriver.exe";
    @BeforeTest(groups={"A","B"})
    public void setup(){
        System.setProperty("webdriver.firefox.marionette", driverPath);
            driver = new FirefoxDriver();
            driver.manage().timeouts().implicitlyWait(10, TimeUnit.SECONDS);
            driver.get("https://google.com");
    }

    @Test(dataProvider="SearchProvider",groups="A")
    public void testMethodA(String author,String searchKey) throws InterruptedException{

          //search google textbox
            WebElement searchText = driver.findElement(By.xpath(".//*[@id='gs_htif0']"));
            //search a value on it
            searchText.sendKeys(searchKey);
            System.out.println("Welcome ->"+author+" Your search key is->"+searchKey);
            Thread.sleep(3000);
            String testValue = searchText.getAttribute("value");
            System.out.println(testValue +"::::"+searchKey);
            searchText.clear();
            //verify correct value in searchbox
            Assert.assertTrue(testValue.equalsIgnoreCase(searchKey));
    }

    @Test(dataProvider="SearchProvider",groups="B")
    public void testMethodB(String searchKey) throws InterruptedException
        {
          //find google search box
            WebElement searchText = driver.findElement(By.xpath(".//*[@id='gs_htif0']"));
            //search a value on it
            searchText.sendKeys(searchKey);
            System.out.println("Welcome ->Unknown user Your search key is->"+searchKey);
            Thread.sleep(3000);
            String testValue = searchText.getAttribute("value");
            System.out.println(testValue +"::::"+searchKey);
            searchText.clear();
            //verify correct value in searchbox
            Assert.assertTrue(testValue.equalsIgnoreCase(searchKey));
    }

    /**
     * Here the DAtaProvider will provide Object array on the basis on ITestContext
     * @param c
     * @return
     */
    @DataProvider(name="SearchProvider")
    public Object[][] getDataFromDataprovider(ITestContext c){
    Object[][] groupArray = null;
        for (String group : c.getIncludedGroups()) {
        if(group.equalsIgnoreCase("A")){
             groupArray = new Object[][] { 
                    { "Guru99", "India" }, 
                    { "Krishna", "UK" }, 
                    { "Bhupesh", "USA" } 
                };
        break;  
        }
            else if(group.equalsIgnoreCase("B"))
            {
             groupArray = new Object[][] { 
                        {  "Canada" }, 
                        {  "Russia" }, 
                        {  "Japan" } 
                    };
            }
        break;
    }
    //return groupArray;        
        return groupArray;
    }
}

Please let me know where is the issue.

krmahadevan commented 7 years ago

I am not able to recreate the problem using TestNG 6.11 (The latest released version of TestNG)

Here's a trimmed down version of the test class

import org.testng.ITestContext;
import org.testng.TestNG;
import org.testng.annotations.DataProvider;
import org.testng.annotations.Test;
import org.testng.xml.XmlClass;
import org.testng.xml.XmlSuite;
import org.testng.xml.XmlTest;

import java.util.Collections;

public class Practice {
    public static void main(String[] args) {
        for (String each : new String[]{"A", "B"}) {
            runWith(each);
        }
    }

    private static void runWith(String group) {
        TestNG testNG = new TestNG();
        XmlSuite xmlSuite = new XmlSuite();
        xmlSuite.setName("suite");
        XmlTest xmlTest = new XmlTest(xmlSuite);
        xmlTest.setName("test");
        xmlTest.addIncludedGroup(group);
        XmlClass clazz = new XmlClass(Practice.class);
        clazz.loadClasses();
        xmlTest.getClasses().add(clazz);
        testNG.setXmlSuites(Collections.singletonList(xmlSuite));
        System.out.println(xmlSuite.toXml());
        testNG.run();
    }

    @Test(dataProvider = "SearchProvider", groups = "A")
    public void testMethodA(String author, String searchKey) {
        System.out.println("testMethodA :" + author + ", " + searchKey);
    }

    @Test(dataProvider = "SearchProvider", groups = "B")
    public void testMethodB(String searchKey) {
        System.out.println("testMethodB :" + searchKey);
    }

    @DataProvider(name = "SearchProvider")
    public Object[][] getDataFromDataprovider(ITestContext c) {
        Object[][] groupArray = null;
        for (String group : c.getIncludedGroups()) {
            if (group.equalsIgnoreCase("A")) {
                groupArray = new Object[][]{
                        {"Guru99", "India"},
                        {"Krishna", "UK"},
                        {"Bhupesh", "USA"}
                };
                break;
            } else if (group.equalsIgnoreCase("B")) {
                groupArray = new Object[][]{
                        {"Canada"},
                        {"Russia"},
                        {"Japan"}
                };
            }
            break;
        }
        //return groupArray;
        return groupArray;

    }
}

Output:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd">
<suite name="suite">
  <test name="test">
    <groups>
      <run>
        <include name="A"/>
      </run>
    </groups>
    <classes>
      <class name="com.rationaleemotions.github.issue1476.Practice"/>
    </classes>
  </test> <!-- test -->
</suite> <!-- suite -->

testMethodA :Guru99, India
testMethodA :Krishna, UK
testMethodA :Bhupesh, USA

===============================================
suite
Total tests run: 3, Failures: 0, Skips: 0
===============================================

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd">
<suite name="suite">
  <test name="test">
    <groups>
      <run>
        <include name="B"/>
      </run>
    </groups>
    <classes>
      <class name="com.rationaleemotions.github.issue1476.Practice"/>
    </classes>
  </test> <!-- test -->
</suite> <!-- suite -->

testMethodB :Canada
testMethodB :Russia
testMethodB :Japan

===============================================
suite
Total tests run: 3, Failures: 0, Skips: 0
===============================================
NewUser310 commented 7 years ago

I am also using TestNG 6.11.0. I tried the same code you updated above but I am getting below error:

<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd">

1500197913420 addons.manager DEBUG Application has been upgraded 1500197913481 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/XPIProvider.jsm: ["XPIProvider"] 1500197913483 addons.manager DEBUG Loaded provider scope for resource://gre/modules/LightweightThemeManager.jsm: ["LightweightThemeManager"] 1500197913486 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/GMPProvider.jsm 1500197913488 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/PluginProvider.jsm 1500197913489 addons.manager DEBUG Starting provider: XPIProvider 1500197913490 addons.xpi DEBUG startup 1500197913491 addons.xpi INFO Mapping fxdriver@googlecode.com to C:\Users\SHRUTI~1.SHA\AppData\Local\Temp\anonymous755665531721254949webdriver-profile\extensions\fxdriver@googlecode.com 1500197913491 addons.xpi DEBUG Ignoring file entry whose name is not a valid add-on ID: C:\Users\SHRUTI~1.SHA\AppData\Local\Temp\anonymous755665531721254949webdriver-profile\extensions\webdriver-staging 1500197913491 addons.xpi INFO Removing all system add-on upgrades. 1500197913492 addons.xpi INFO SystemAddonInstallLocation directory is missing 1500197913493 addons.xpi INFO Mapping aushelper@mozilla.org to C:\Program Files (x86)\Mozilla Firefox\browser\features\aushelper@mozilla.org.xpi 1500197913494 addons.xpi INFO Mapping e10srollout@mozilla.org to C:\Program Files (x86)\Mozilla Firefox\browser\features\e10srollout@mozilla.org.xpi 1500197913494 addons.xpi INFO Mapping firefox@getpocket.com to C:\Program Files (x86)\Mozilla Firefox\browser\features\firefox@getpocket.com.xpi 1500197913494 addons.xpi INFO Mapping webcompat@mozilla.org to C:\Program Files (x86)\Mozilla Firefox\browser\features\webcompat@mozilla.org.xpi 1500197913496 addons.xpi INFO Mapping {972ce4c6-7e08-4474-a285-3208198ce6fd} to C:\Program Files (x86)\Mozilla Firefox\browser\extensions\{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi 1500197913496 addons.xpi DEBUG Skipping unavailable install location app-system-share 1500197913496 addons.xpi DEBUG Skipping unavailable install location app-system-local 1500197913497 addons.xpi DEBUG checkForChanges 1500197913497 addons.xpi INFO SystemAddonInstallLocation directory is missing 1500197913498 addons.xpi DEBUG Loaded add-on state from prefs: {} 1500197913498 addons.xpi DEBUG New add-on fxdriver@googlecode.com in app-profile 1500197913499 addons.xpi DEBUG getModTime: Recursive scan of fxdriver@googlecode.com 1500197913506 addons.xpi DEBUG New add-on aushelper@mozilla.org in app-system-defaults 1500197913506 addons.xpi DEBUG getModTime: Recursive scan of aushelper@mozilla.org 1500197913507 addons.xpi DEBUG New add-on e10srollout@mozilla.org in app-system-defaults 1500197913508 addons.xpi DEBUG getModTime: Recursive scan of e10srollout@mozilla.org 1500197913508 addons.xpi DEBUG New add-on firefox@getpocket.com in app-system-defaults 1500197913508 addons.xpi DEBUG getModTime: Recursive scan of firefox@getpocket.com 1500197913509 addons.xpi DEBUG New add-on webcompat@mozilla.org in app-system-defaults 1500197913509 addons.xpi DEBUG getModTime: Recursive scan of webcompat@mozilla.org 1500197913510 addons.xpi DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} in app-global 1500197913510 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} 1500197913511 addons.xpi DEBUG getInstallState changed: true, state: {"app-profile":{"fxdriver@googlecode.com":{"d":"C:\\Users\\SHRUTI~1.SHA\\AppData\\Local\\Temp\\anonymous755665531721254949webdriver-profile\\extensions\\fxdriver@googlecode.com","st":1500197912871,"mt":1500197912853}},"app-system-defaults":{"aushelper@mozilla.org":{"d":"C:\\Program Files (x86)\\Mozilla Firefox\\browser\\features\\aushelper@mozilla.org.xpi","st":1497315741401},"e10srollout@mozilla.org":{"d":"C:\\Program Files (x86)\\Mozilla Firefox\\browser\\features\\e10srollout@mozilla.org.xpi","st":1497315741398},"firefox@getpocket.com":{"d":"C:\\Program Files (x86)\\Mozilla Firefox\\browser\\features\\firefox@getpocket.com.xpi","st":1497315741395},"webcompat@mozilla.org":{"d":"C:\\Program Files (x86)\\Mozilla Firefox\\browser\\features\\webcompat@mozilla.org.xpi","st":1497315741341}},"app-global":{"{972ce4c6-7e08-4474-a285-3208198ce6fd}":{"d":"C:\\Program Files (x86)\\Mozilla Firefox\\browser\\extensions\\{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","st":1497315741403}}} 1500197913521 addons.xpi-utils DEBUG Opening XPI database C:\Users\SHRUTI~1.SHA\AppData\Local\Temp\anonymous755665531721254949webdriver-profile\extensions.json 1500197913525 addons.xpi-utils DEBUG New add-on fxdriver@googlecode.com installed in app-profile *** Blocklist::_loadBlocklistFromFile: blocklist is disabled 1500197913546 addons.xpi WARN Add-on fxdriver@googlecode.com is not correctly signed. 1500197913547 addons.xpi WARN Add-on fxdriver@googlecode.com is not correctly signed. 1500197913549 DeferredSave.extensions.json DEBUG Save changes 1500197913550 addons.xpi-utils DEBUG New add-on aushelper@mozilla.org installed in app-system-defaults 1500197913554 DeferredSave.extensions.json DEBUG Starting timer 1500197913557 DeferredSave.extensions.json DEBUG Save changes 1500197913557 addons.xpi-utils DEBUG New add-on e10srollout@mozilla.org installed in app-system-defaults 1500197913564 DeferredSave.extensions.json DEBUG Save changes 1500197913565 addons.xpi-utils DEBUG New add-on firefox@getpocket.com installed in app-system-defaults 1500197913571 DeferredSave.extensions.json DEBUG Save changes 1500197913572 addons.xpi-utils DEBUG New add-on webcompat@mozilla.org installed in app-system-defaults 1500197913577 DeferredSave.extensions.json DEBUG Save changes 1500197913577 addons.xpi-utils DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} installed in app-global 1500197913582 DeferredSave.extensions.json DEBUG Save changes 1500197913583 addons.manager DEBUG Registering startup change 'installed' for fxdriver@googlecode.com 1500197913583 addons.xpi-utils DEBUG Make addon app-profile:fxdriver@googlecode.com visible 1500197913583 DeferredSave.extensions.json DEBUG Save changes 1500197913584 addons.manager DEBUG Registering startup change 'installed' for aushelper@mozilla.org 1500197913590 addons.xpi DEBUG Loading bootstrap scope from C:\Program Files (x86)\Mozilla Firefox\browser\features\aushelper@mozilla.org.xpi 1500197913596 addons.xpi DEBUG Calling bootstrap method install on aushelper@mozilla.org version 2.0 1500197913596 addons.xpi-utils DEBUG Make addon app-system-defaults:aushelper@mozilla.org visible 1500197913596 DeferredSave.extensions.json DEBUG Save changes 1500197913596 addons.manager DEBUG Registering startup change 'installed' for e10srollout@mozilla.org 1500197913597 addons.xpi DEBUG Loading bootstrap scope from C:\Program Files (x86)\Mozilla Firefox\browser\features\e10srollout@mozilla.org.xpi 1500197913600 addons.xpi DEBUG Calling bootstrap method install on e10srollout@mozilla.org version 1.14 1500197913601 addons.xpi-utils DEBUG Make addon app-system-defaults:e10srollout@mozilla.org visible 1500197913601 DeferredSave.extensions.json DEBUG Save changes 1500197913601 addons.manager DEBUG Registering startup change 'installed' for firefox@getpocket.com 1500197913602 addons.xpi DEBUG Loading bootstrap scope from C:\Program Files (x86)\Mozilla Firefox\browser\features\firefox@getpocket.com.xpi 1500197913606 addons.xpi DEBUG Calling bootstrap method install on firefox@getpocket.com version 1.0.5 1500197913606 addons.xpi-utils DEBUG Make addon app-system-defaults:firefox@getpocket.com visible 1500197913607 DeferredSave.extensions.json DEBUG Save changes 1500197913607 addons.manager DEBUG Registering startup change 'installed' for webcompat@mozilla.org 1500197913607 addons.xpi DEBUG Loading bootstrap scope from C:\Program Files (x86)\Mozilla Firefox\browser\features\webcompat@mozilla.org.xpi 1500197913610 addons.xpi DEBUG Calling bootstrap method install on webcompat@mozilla.org version 1.0 1500197913610 addons.xpi-utils DEBUG Make addon app-system-defaults:webcompat@mozilla.org visible 1500197913611 DeferredSave.extensions.json DEBUG Save changes 1500197913611 addons.xpi-utils DEBUG Make addon app-global:{972ce4c6-7e08-4474-a285-3208198ce6fd} visible 1500197913611 DeferredSave.extensions.json DEBUG Save changes 1500197913612 addons.xpi DEBUG Updating XPIState for {"id":"fxdriver@googlecode.com","syncGUID":"{f7438ef1-5138-4767-8b3f-b6f3cf6a346f}","location":"app-profile","version":"3.4.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Firefox WebDriver","description":"WebDriver implementation for Firefox","creator":"Simon Stewart","homepageURL":null},"visible":true,"active":false,"userDisabled":false,"appDisabled":true,"descriptor":"C:\\Users\\SHRUTI~1.SHA\\AppData\\Local\\Temp\\anonymous755665531721254949webdriver-profile\\extensions\\fxdriver@googlecode.com","installDate":1500197912871,"updateDate":1500197912871,"applyBackgroundUpdates":1,"bootstrap":false,"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} 1500197913612 addons.xpi DEBUG Updating XPIState for {"id":"aushelper@mozilla.org","syncGUID":"{b473180d-1ee9-4a89-ae3f-64049b4a129d}","location":"app-system-defaults","version":"2.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":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,"descriptor":"C:\\Program Files (x86)\\Mozilla Firefox\\browser\\features\\aushelper@mozilla.org.xpi","installDate":1497315741401,"updateDate":1497315741401,"applyBackgroundUpdates":1,"bootstrap":true,"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":"53.0.3","maxVersion":"53.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true,"dependencies":[],"hasEmbeddedWebExtension":false,"mpcOptedOut":false,"userPermissions":null} 1500197913612 addons.xpi DEBUG getModTime: Recursive scan of aushelper@mozilla.org 1500197913613 addons.xpi DEBUG Updating XPIState for {"id":"e10srollout@mozilla.org","syncGUID":"{1999ced3-3ace-425e-b333-83bcf2201a7e}","location":"app-system-defaults","version":"1.14","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":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,"descriptor":"C:\\Program Files (x86)\\Mozilla Firefox\\browser\\features\\e10srollout@mozilla.org.xpi","installDate":1497315741398,"updateDate":1497315741398,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":8478,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"53.0.3","maxVersion":"53.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true,"dependencies":[],"hasEmbeddedWebExtension":false,"mpcOptedOut":false,"userPermissions":null} 1500197913613 addons.xpi DEBUG getModTime: Recursive scan of e10srollout@mozilla.org 1500197913613 addons.xpi DEBUG Updating XPIState for {"id":"firefox@getpocket.com","syncGUID":"{5910c9c1-a28c-487d-869d-02693aec02d5}","location":"app-system-defaults","version":"1.0.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":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,"descriptor":"C:\\Program Files (x86)\\Mozilla Firefox\\browser\\features\\firefox@getpocket.com.xpi","installDate":1497315741395,"updateDate":1497315741395,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":913565,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"53.0.3","maxVersion":"53.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true,"dependencies":[],"hasEmbeddedWebExtension":false,"mpcOptedOut":false,"userPermissions":null} 1500197913613 addons.xpi DEBUG getModTime: Recursive scan of firefox@getpocket.com 1500197913614 addons.xpi DEBUG Updating XPIState for {"id":"webcompat@mozilla.org","syncGUID":"{2f11b275-c2d1-4318-9737-28751f525044}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":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,"descriptor":"C:\\Program Files (x86)\\Mozilla Firefox\\browser\\features\\webcompat@mozilla.org.xpi","installDate":1497315741341,"updateDate":1497315741341,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":1456,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"53.0.3","maxVersion":"53.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true,"dependencies":[],"hasEmbeddedWebExtension":false,"mpcOptedOut":false,"userPermissions":null} 1500197913614 addons.xpi DEBUG getModTime: Recursive scan of webcompat@mozilla.org 1500197913614 addons.xpi DEBUG Updating XPIState for {"id":"{972ce4c6-7e08-4474-a285-3208198ce6fd}","syncGUID":"{dea50ee9-818e-4ab9-b6e4-c9a4d85cb1b3}","location":"app-global","version":"53.0.3","type":"theme","internalName":"classic/1.0","updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":"chrome://browser/content/default-theme-icon.svg","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":"C:\\Program Files (x86)\\Mozilla Firefox\\browser\\extensions\\{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","installDate":1497315741403,"updateDate":1497315741403,"applyBackgroundUpdates":1,"skinnable":true,"size":8207,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"53.0.3","maxVersion":"53.0.3"}],"targetPlatforms":[],"seen":true,"dependencies":[],"hasEmbeddedWebExtension":false,"userPermissions":null} 1500197913615 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} 1500197913615 DeferredSave.extensions.json DEBUG Save changes 1500197913615 addons.xpi DEBUG Updating database with changes to installed add-ons 1500197913615 addons.xpi-utils DEBUG Updating add-on states 1500197913618 addons.xpi-utils DEBUG Writing add-ons list 1500197913629 addons.xpi DEBUG Registering manifest for C:\Program Files (x86)\Mozilla Firefox\browser\features\aushelper@mozilla.org.xpi 1500197913630 addons.xpi DEBUG Calling bootstrap method startup on aushelper@mozilla.org version 2.0 1500197913633 addons.xpi DEBUG Registering manifest for C:\Program Files (x86)\Mozilla Firefox\browser\features\e10srollout@mozilla.org.xpi 1500197913634 addons.xpi DEBUG Calling bootstrap method startup on e10srollout@mozilla.org version 1.14 1500197913635 addons.xpi DEBUG Registering manifest for C:\Program Files (x86)\Mozilla Firefox\browser\features\firefox@getpocket.com.xpi 1500197913637 addons.xpi DEBUG Calling bootstrap method startup on firefox@getpocket.com version 1.0.5 1500197913637 addons.xpi DEBUG Registering manifest for C:\Program Files (x86)\Mozilla Firefox\browser\features\webcompat@mozilla.org.xpi 1500197913639 addons.xpi DEBUG Calling bootstrap method startup on webcompat@mozilla.org version 1.0 1500197913641 addons.manager DEBUG Registering shutdown blocker for XPIProvider 1500197913642 addons.manager DEBUG Provider finished startup: XPIProvider 1500197913642 addons.manager DEBUG Starting provider: LightweightThemeManager 1500197913642 addons.manager DEBUG Registering shutdown blocker for LightweightThemeManager 1500197913642 addons.manager DEBUG Provider finished startup: LightweightThemeManager 1500197913643 addons.manager DEBUG Starting provider: GMPProvider 1500197913650 addons.manager DEBUG Registering shutdown blocker for GMPProvider 1500197913650 addons.manager DEBUG Provider finished startup: GMPProvider 1500197913650 addons.manager DEBUG Starting provider: PluginProvider 1500197913650 addons.manager DEBUG Registering shutdown blocker for PluginProvider 1500197913651 addons.manager DEBUG Provider finished startup: PluginProvider 1500197913651 addons.manager DEBUG Completed startup sequence 1500197914165 DeferredSave.extensions.json DEBUG Starting write 1500197914175 addons.manager DEBUG Starting provider: 1500197914175 addons.manager DEBUG Registering shutdown blocker for 1500197914176 addons.manager DEBUG Provider finished startup: 1500197914439 addons.repository DEBUG No addons.json found. 1500197914440 DeferredSave.addons.json DEBUG Save changes 1500197914445 DeferredSave.addons.json DEBUG Starting timer 1500197914506 addons.manager DEBUG Starting provider: PreviousExperimentProvider 1500197914506 addons.manager DEBUG Registering shutdown blocker for PreviousExperimentProvider 1500197914506 addons.manager DEBUG Provider finished startup: PreviousExperimentProvider 1500197914512 DeferredSave.extensions.json DEBUG Write succeeded 1500197914513 addons.xpi-utils DEBUG XPI Database saved, setting schema version preference to 19 1500197914513 DeferredSave.addons.json DEBUG Starting write 1500197914563 DeferredSave.addons.json DEBUG Write succeeded Crash Annotation GraphicsCriticalError: |[C0][GFX1-]: PossiblyBrokenSurfaceSharing_UnexpectedAMDGPU (t=2.92485) [GFX1-]: PossiblyBrokenSurfaceSharing_UnexpectedAMDGPU =============================================== suite Total tests run: 3, Failures: 0, Skips: 3 Configuration Failures: 1, Skips: 0 =============================================== 1500197934389 addons.manager DEBUG Application has been upgraded 1500197934459 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/XPIProvider.jsm: ["XPIProvider"] 1500197934460 addons.manager DEBUG Loaded provider scope for resource://gre/modules/LightweightThemeManager.jsm: ["LightweightThemeManager"] 1500197934464 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/GMPProvider.jsm 1500197934466 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/PluginProvider.jsm 1500197934467 addons.manager DEBUG Starting provider: XPIProvider 1500197934468 addons.xpi DEBUG startup 1500197934470 addons.xpi INFO Mapping fxdriver@googlecode.com to C:\Users\SHRUTI~1.SHA\AppData\Local\Temp\anonymous697015237115401659webdriver-profile\extensions\fxdriver@googlecode.com 1500197934471 addons.xpi DEBUG Ignoring file entry whose name is not a valid add-on ID: C:\Users\SHRUTI~1.SHA\AppData\Local\Temp\anonymous697015237115401659webdriver-profile\extensions\webdriver-staging 1500197934471 addons.xpi INFO Removing all system add-on upgrades. 1500197934472 addons.xpi INFO SystemAddonInstallLocation directory is missing 1500197934474 addons.xpi INFO Mapping aushelper@mozilla.org to C:\Program Files (x86)\Mozilla Firefox\browser\features\aushelper@mozilla.org.xpi 1500197934474 addons.xpi INFO Mapping e10srollout@mozilla.org to C:\Program Files (x86)\Mozilla Firefox\browser\features\e10srollout@mozilla.org.xpi 1500197934475 addons.xpi INFO Mapping firefox@getpocket.com to C:\Program Files (x86)\Mozilla Firefox\browser\features\firefox@getpocket.com.xpi 1500197934475 addons.xpi INFO Mapping webcompat@mozilla.org to C:\Program Files (x86)\Mozilla Firefox\browser\features\webcompat@mozilla.org.xpi 1500197934478 addons.xpi INFO Mapping {972ce4c6-7e08-4474-a285-3208198ce6fd} to C:\Program Files (x86)\Mozilla Firefox\browser\extensions\{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi 1500197934478 addons.xpi DEBUG Skipping unavailable install location app-system-share 1500197934478 addons.xpi DEBUG Skipping unavailable install location app-system-local 1500197934479 addons.xpi DEBUG checkForChanges 1500197934479 addons.xpi INFO SystemAddonInstallLocation directory is missing 1500197934480 addons.xpi DEBUG Loaded add-on state from prefs: {} 1500197934481 addons.xpi DEBUG New add-on fxdriver@googlecode.com in app-profile 1500197934481 addons.xpi DEBUG getModTime: Recursive scan of fxdriver@googlecode.com 1500197934489 addons.xpi DEBUG New add-on aushelper@mozilla.org in app-system-defaults 1500197934489 addons.xpi DEBUG getModTime: Recursive scan of aushelper@mozilla.org 1500197934490 addons.xpi DEBUG New add-on e10srollout@mozilla.org in app-system-defaults 1500197934491 addons.xpi DEBUG getModTime: Recursive scan of e10srollout@mozilla.org 1500197934492 addons.xpi DEBUG New add-on firefox@getpocket.com in app-system-defaults 1500197934492 addons.xpi DEBUG getModTime: Recursive scan of firefox@getpocket.com 1500197934493 addons.xpi DEBUG New add-on webcompat@mozilla.org in app-system-defaults 1500197934493 addons.xpi DEBUG getModTime: Recursive scan of webcompat@mozilla.org 1500197934494 addons.xpi DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} in app-global 1500197934494 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} 1500197934495 addons.xpi DEBUG getInstallState changed: true, state: {"app-profile":{"fxdriver@googlecode.com":{"d":"C:\\Users\\SHRUTI~1.SHA\\AppData\\Local\\Temp\\anonymous697015237115401659webdriver-profile\\extensions\\fxdriver@googlecode.com","st":1500197933885,"mt":1500197933869}},"app-system-defaults":{"aushelper@mozilla.org":{"d":"C:\\Program Files (x86)\\Mozilla Firefox\\browser\\features\\aushelper@mozilla.org.xpi","st":1497315741401},"e10srollout@mozilla.org":{"d":"C:\\Program Files (x86)\\Mozilla Firefox\\browser\\features\\e10srollout@mozilla.org.xpi","st":1497315741398},"firefox@getpocket.com":{"d":"C:\\Program Files (x86)\\Mozilla Firefox\\browser\\features\\firefox@getpocket.com.xpi","st":1497315741395},"webcompat@mozilla.org":{"d":"C:\\Program Files (x86)\\Mozilla Firefox\\browser\\features\\webcompat@mozilla.org.xpi","st":1497315741341}},"app-global":{"{972ce4c6-7e08-4474-a285-3208198ce6fd}":{"d":"C:\\Program Files (x86)\\Mozilla Firefox\\browser\\extensions\\{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","st":1497315741403}}} 1500197934504 addons.xpi-utils DEBUG Opening XPI database C:\Users\SHRUTI~1.SHA\AppData\Local\Temp\anonymous697015237115401659webdriver-profile\extensions.json 1500197934509 addons.xpi-utils DEBUG New add-on fxdriver@googlecode.com installed in app-profile *** Blocklist::_loadBlocklistFromFile: blocklist is disabled 1500197934529 addons.xpi WARN Add-on fxdriver@googlecode.com is not correctly signed. 1500197934530 addons.xpi WARN Add-on fxdriver@googlecode.com is not correctly signed. 1500197934532 DeferredSave.extensions.json DEBUG Save changes 1500197934533 addons.xpi-utils DEBUG New add-on aushelper@mozilla.org installed in app-system-defaults 1500197934537 DeferredSave.extensions.json DEBUG Starting timer 1500197934539 DeferredSave.extensions.json DEBUG Save changes 1500197934539 addons.xpi-utils DEBUG New add-on e10srollout@mozilla.org installed in app-system-defaults 1500197934545 DeferredSave.extensions.json DEBUG Save changes 1500197934546 addons.xpi-utils DEBUG New add-on firefox@getpocket.com installed in app-system-defaults 1500197934554 DeferredSave.extensions.json DEBUG Save changes 1500197934554 addons.xpi-utils DEBUG New add-on webcompat@mozilla.org installed in app-system-defaults 1500197934561 DeferredSave.extensions.json DEBUG Save changes 1500197934562 addons.xpi-utils DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} installed in app-global 1500197934571 DeferredSave.extensions.json DEBUG Starting write 1500197934585 DeferredSave.extensions.json DEBUG Save changes 1500197934585 DeferredSave.extensions.json DEBUG Data changed while write in progress 1500197934585 addons.manager DEBUG Registering startup change 'installed' for fxdriver@googlecode.com 1500197934585 addons.xpi-utils DEBUG Make addon app-profile:fxdriver@googlecode.com visible 1500197934585 DeferredSave.extensions.json DEBUG Save changes 1500197934586 addons.manager DEBUG Registering startup change 'installed' for aushelper@mozilla.org 1500197934594 addons.xpi DEBUG Loading bootstrap scope from C:\Program Files (x86)\Mozilla Firefox\browser\features\aushelper@mozilla.org.xpi 1500197934602 addons.xpi DEBUG Calling bootstrap method install on aushelper@mozilla.org version 2.0 1500197934602 addons.xpi-utils DEBUG Make addon app-system-defaults:aushelper@mozilla.org visible 1500197934602 DeferredSave.extensions.json DEBUG Save changes 1500197934602 addons.manager DEBUG Registering startup change 'installed' for e10srollout@mozilla.org 1500197934603 addons.xpi DEBUG Loading bootstrap scope from C:\Program Files (x86)\Mozilla Firefox\browser\features\e10srollout@mozilla.org.xpi 1500197934607 addons.xpi DEBUG Calling bootstrap method install on e10srollout@mozilla.org version 1.14 1500197934608 addons.xpi-utils DEBUG Make addon app-system-defaults:e10srollout@mozilla.org visible 1500197934609 DeferredSave.extensions.json DEBUG Save changes 1500197934609 addons.manager DEBUG Registering startup change 'installed' for firefox@getpocket.com 1500197934610 addons.xpi DEBUG Loading bootstrap scope from C:\Program Files (x86)\Mozilla Firefox\browser\features\firefox@getpocket.com.xpi 1500197934617 addons.xpi DEBUG Calling bootstrap method install on firefox@getpocket.com version 1.0.5 1500197934617 addons.xpi-utils DEBUG Make addon app-system-defaults:firefox@getpocket.com visible 1500197934617 DeferredSave.extensions.json DEBUG Save changes 1500197934617 addons.manager DEBUG Registering startup change 'installed' for webcompat@mozilla.org 1500197934618 addons.xpi DEBUG Loading bootstrap scope from C:\Program Files (x86)\Mozilla Firefox\browser\features\webcompat@mozilla.org.xpi 1500197934622 addons.xpi DEBUG Calling bootstrap method install on webcompat@mozilla.org version 1.0 1500197934622 addons.xpi-utils DEBUG Make addon app-system-defaults:webcompat@mozilla.org visible 1500197934623 DeferredSave.extensions.json DEBUG Save changes 1500197934623 addons.xpi-utils DEBUG Make addon app-global:{972ce4c6-7e08-4474-a285-3208198ce6fd} visible 1500197934624 DeferredSave.extensions.json DEBUG Save changes 1500197934624 addons.xpi DEBUG Updating XPIState for {"id":"fxdriver@googlecode.com","syncGUID":"{3eee1cd2-308d-4760-b607-1050aed3fb6e}","location":"app-profile","version":"3.4.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Firefox WebDriver","description":"WebDriver implementation for Firefox","creator":"Simon Stewart","homepageURL":null},"visible":true,"active":false,"userDisabled":false,"appDisabled":true,"descriptor":"C:\\Users\\SHRUTI~1.SHA\\AppData\\Local\\Temp\\anonymous697015237115401659webdriver-profile\\extensions\\fxdriver@googlecode.com","installDate":1500197933885,"updateDate":1500197933885,"applyBackgroundUpdates":1,"bootstrap":false,"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} 1500197934624 addons.xpi DEBUG Updating XPIState for {"id":"aushelper@mozilla.org","syncGUID":"{453d6a0a-4015-44cd-a1b3-1a965ed1405b}","location":"app-system-defaults","version":"2.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":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,"descriptor":"C:\\Program Files (x86)\\Mozilla Firefox\\browser\\features\\aushelper@mozilla.org.xpi","installDate":1497315741401,"updateDate":1497315741401,"applyBackgroundUpdates":1,"bootstrap":true,"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":"53.0.3","maxVersion":"53.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true,"dependencies":[],"hasEmbeddedWebExtension":false,"mpcOptedOut":false,"userPermissions":null} 1500197934624 addons.xpi DEBUG getModTime: Recursive scan of aushelper@mozilla.org 1500197934625 addons.xpi DEBUG Updating XPIState for {"id":"e10srollout@mozilla.org","syncGUID":"{7b252edc-7f59-4639-bb2a-9a27d9715319}","location":"app-system-defaults","version":"1.14","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":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,"descriptor":"C:\\Program Files (x86)\\Mozilla Firefox\\browser\\features\\e10srollout@mozilla.org.xpi","installDate":1497315741398,"updateDate":1497315741398,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":8478,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"53.0.3","maxVersion":"53.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true,"dependencies":[],"hasEmbeddedWebExtension":false,"mpcOptedOut":false,"userPermissions":null} 1500197934625 addons.xpi DEBUG getModTime: Recursive scan of e10srollout@mozilla.org 1500197934626 addons.xpi DEBUG Updating XPIState for {"id":"firefox@getpocket.com","syncGUID":"{333a05a8-ec88-427b-932c-b9b1194d0449}","location":"app-system-defaults","version":"1.0.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":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,"descriptor":"C:\\Program Files (x86)\\Mozilla Firefox\\browser\\features\\firefox@getpocket.com.xpi","installDate":1497315741395,"updateDate":1497315741395,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":913565,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"53.0.3","maxVersion":"53.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true,"dependencies":[],"hasEmbeddedWebExtension":false,"mpcOptedOut":false,"userPermissions":null} 1500197934626 addons.xpi DEBUG getModTime: Recursive scan of firefox@getpocket.com 1500197934626 addons.xpi DEBUG Updating XPIState for {"id":"webcompat@mozilla.org","syncGUID":"{8c0aa7c4-7333-4b11-ba9b-12c10c40e2e3}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":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,"descriptor":"C:\\Program Files (x86)\\Mozilla Firefox\\browser\\features\\webcompat@mozilla.org.xpi","installDate":1497315741341,"updateDate":1497315741341,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":1456,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"53.0.3","maxVersion":"53.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true,"dependencies":[],"hasEmbeddedWebExtension":false,"mpcOptedOut":false,"userPermissions":null} 1500197934626 addons.xpi DEBUG getModTime: Recursive scan of webcompat@mozilla.org 1500197934627 addons.xpi DEBUG Updating XPIState for {"id":"{972ce4c6-7e08-4474-a285-3208198ce6fd}","syncGUID":"{657b66fd-b85e-4bf0-9fd9-890c010bcbf0}","location":"app-global","version":"53.0.3","type":"theme","internalName":"classic/1.0","updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":"chrome://browser/content/default-theme-icon.svg","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":"C:\\Program Files (x86)\\Mozilla Firefox\\browser\\extensions\\{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","installDate":1497315741403,"updateDate":1497315741403,"applyBackgroundUpdates":1,"skinnable":true,"size":8207,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"53.0.3","maxVersion":"53.0.3"}],"targetPlatforms":[],"seen":true,"dependencies":[],"hasEmbeddedWebExtension":false,"userPermissions":null} 1500197934627 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} 1500197934629 DeferredSave.extensions.json DEBUG Save changes 1500197934629 addons.xpi DEBUG Updating database with changes to installed add-ons 1500197934629 addons.xpi-utils DEBUG Updating add-on states 1500197934632 addons.xpi-utils DEBUG Writing add-ons list 1500197934644 addons.xpi DEBUG Registering manifest for C:\Program Files (x86)\Mozilla Firefox\browser\features\aushelper@mozilla.org.xpi 1500197934646 addons.xpi DEBUG Calling bootstrap method startup on aushelper@mozilla.org version 2.0 1500197934649 addons.xpi DEBUG Registering manifest for C:\Program Files (x86)\Mozilla Firefox\browser\features\e10srollout@mozilla.org.xpi 1500197934651 addons.xpi DEBUG Calling bootstrap method startup on e10srollout@mozilla.org version 1.14 1500197934652 addons.xpi DEBUG Registering manifest for C:\Program Files (x86)\Mozilla Firefox\browser\features\firefox@getpocket.com.xpi 1500197934654 addons.xpi DEBUG Calling bootstrap method startup on firefox@getpocket.com version 1.0.5 1500197934655 addons.xpi DEBUG Registering manifest for C:\Program Files (x86)\Mozilla Firefox\browser\features\webcompat@mozilla.org.xpi 1500197934657 addons.xpi DEBUG Calling bootstrap method startup on webcompat@mozilla.org version 1.0 1500197934660 addons.manager DEBUG Registering shutdown blocker for XPIProvider 1500197934660 addons.manager DEBUG Provider finished startup: XPIProvider 1500197934661 addons.manager DEBUG Starting provider: LightweightThemeManager 1500197934661 addons.manager DEBUG Registering shutdown blocker for LightweightThemeManager 1500197934661 addons.manager DEBUG Provider finished startup: LightweightThemeManager 1500197934661 addons.manager DEBUG Starting provider: GMPProvider 1500197934668 addons.manager DEBUG Registering shutdown blocker for GMPProvider 1500197934668 addons.manager DEBUG Provider finished startup: GMPProvider 1500197934669 addons.manager DEBUG Starting provider: PluginProvider 1500197934669 addons.manager DEBUG Registering shutdown blocker for PluginProvider 1500197934669 addons.manager DEBUG Provider finished startup: PluginProvider 1500197934670 addons.manager DEBUG Completed startup sequence 1500197935203 addons.manager DEBUG Starting provider: 1500197935203 addons.manager DEBUG Registering shutdown blocker for 1500197935203 addons.manager DEBUG Provider finished startup: 1500197935461 DeferredSave.extensions.json DEBUG Write succeeded 1500197935461 addons.xpi-utils DEBUG XPI Database saved, setting schema version preference to 19 1500197935461 DeferredSave.extensions.json DEBUG Starting timer 1500197935483 DeferredSave.extensions.json DEBUG Starting write 1500197935488 addons.repository DEBUG No addons.json found. 1500197935488 DeferredSave.addons.json DEBUG Save changes 1500197935491 DeferredSave.addons.json DEBUG Starting timer 1500197935555 addons.manager DEBUG Starting provider: PreviousExperimentProvider 1500197935556 addons.manager DEBUG Registering shutdown blocker for PreviousExperimentProvider 1500197935556 addons.manager DEBUG Provider finished startup: PreviousExperimentProvider 1500197935559 DeferredSave.addons.json DEBUG Starting write 1500197935583 DeferredSave.extensions.json DEBUG Write succeeded 1500197935638 DeferredSave.addons.json DEBUG Write succeeded Crash Annotation GraphicsCriticalError: |[C0][GFX1-]: PossiblyBrokenSurfaceSharing_UnexpectedAMDGPU (t=3.00541) [GFX1-]: PossiblyBrokenSurfaceSharing_UnexpectedAMDGPU 1500197948893 addons.xpi DEBUG Calling bootstrap method shutdown on webcompat@mozilla.org version 1.0 1500197948894 addons.xpi DEBUG Calling bootstrap method shutdown on firefox@getpocket.com version 1.0.5 1500197948894 addons.xpi DEBUG Calling bootstrap method shutdown on e10srollout@mozilla.org version 1.14 1500197948896 addons.xpi DEBUG Calling bootstrap method shutdown on aushelper@mozilla.org version 2.0 [GPU 23224] WARNING: pipe error: 109: file c:/builds/moz2_slave/m-rel-w32-00000000000000000000/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 [Child 18800] WARNING: pipe error: 109: file c:/builds/moz2_slave/m-rel-w32-00000000000000000000/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 1500197949074 addons.manager DEBUG shutdown 1500197949075 addons.manager DEBUG Calling shutdown blocker for XPIProvider 1500197949076 addons.xpi DEBUG shutdown 1500197949076 addons.xpi-utils DEBUG shutdown 1500197949077 addons.manager DEBUG Calling shutdown blocker for LightweightThemeManager 1500197949078 addons.manager DEBUG Calling shutdown blocker for GMPProvider 1500197949080 addons.manager DEBUG Calling shutdown blocker for PluginProvider 1500197949080 addons.manager DEBUG Calling shutdown blocker for 1500197949082 addons.manager DEBUG Calling shutdown blocker for PreviousExperimentProvider 1500197949084 addons.xpi DEBUG Notifying XPI shutdown observers 1500197949088 addons.manager DEBUG Async provider shutdown done 1500197951087 addons.xpi DEBUG Calling bootstrap method shutdown on webcompat@mozilla.org version 1.0 1500197951088 addons.xpi DEBUG Calling bootstrap method shutdown on firefox@getpocket.com version 1.0.5 1500197951089 addons.xpi DEBUG Calling bootstrap method shutdown on e10srollout@mozilla.org version 1.14 1500197951090 addons.xpi DEBUG Calling bootstrap method shutdown on aushelper@mozilla.org version 2.0 [Child 8288] WARNING: pipe error: 109: file c:/builds/moz2_slave/m-rel-w32-00000000000000000000/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 [Child 8288] WARNING: pipe error: 109: file c:/builds/moz2_slave/m-rel-w32-00000000000000000000/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 1500197951238 addons.manager DEBUG shutdown 1500197951239 addons.manager DEBUG Calling shutdown blocker for XPIProvider 1500197951239 addons.xpi DEBUG shutdown 1500197951239 addons.xpi-utils DEBUG shutdown 1500197951240 addons.manager DEBUG Calling shutdown blocker for LightweightThemeManager 1500197951241 addons.manager DEBUG Calling shutdown blocker for GMPProvider 1500197951243 addons.manager DEBUG Calling shutdown blocker for PluginProvider 1500197951244 addons.manager DEBUG Calling shutdown blocker for 1500197951246 addons.manager DEBUG Calling shutdown blocker for PreviousExperimentProvider 1500197951248 addons.xpi DEBUG Notifying XPI shutdown observers 1500197951252 addons.manager DEBUG Async provider shutdown done =============================================== suite Total tests run: 3, Failures: 0, Skips: 3 Configuration Failures: 1, Skips: 0 ===============================================
krmahadevan commented 7 years ago

@NewUser310 - Your error is not related to TestNG but it looks like its coming from selenium due to a mismatch between the selenium version and the firefox browser that you are using. Can you please run the sample that I shared and let us know if that works? My sample is a simple TestNG test that doesn't have any dependencies on other things but still adheres to the original test code you shared in terms of functional similarity.

NewUser310 commented 7 years ago

I ran your code and with that I got the above error. I am unable to understand if there is any issue with my code.

krmahadevan commented 7 years ago

@NewUser310 - Are you sure you ran the sample that I shared in https://github.com/cbeust/testng/issues/1476#issuecomment-315585696 ?

The sample I shared doesn't have any web driver code. Your error shows the involvement of WebDriver. Please create a new Java class, copy paste the code that I shared, run that and please tell me what you see.

NewUser310 commented 7 years ago

Yes

NewUser310 commented 7 years ago

Exactly same i did. I created a new class and pasted your code. But got below error while running.

<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd">

1500215336464 addons.manager DEBUG Application has been upgraded 1500215336600 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/XPIProvider.jsm: ["XPIProvider"] 1500215336602 addons.manager DEBUG Loaded provider scope for resource://gre/modules/LightweightThemeManager.jsm: ["LightweightThemeManager"] 1500215336605 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/GMPProvider.jsm 1500215336607 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/PluginProvider.jsm 1500215336608 addons.manager DEBUG Starting provider: XPIProvider 1500215336609 addons.xpi DEBUG startup 1500215336610 addons.xpi INFO Mapping fxdriver@googlecode.com to C:\Users\SHRUTI~1.SHA\AppData\Local\Temp\anonymous81977192964358594webdriver-profile\extensions\fxdriver@googlecode.com 1500215336610 addons.xpi DEBUG Ignoring file entry whose name is not a valid add-on ID: C:\Users\SHRUTI~1.SHA\AppData\Local\Temp\anonymous81977192964358594webdriver-profile\extensions\webdriver-staging 1500215336610 addons.xpi INFO Removing all system add-on upgrades. 1500215336611 addons.xpi INFO SystemAddonInstallLocation directory is missing 1500215336612 addons.xpi INFO Mapping aushelper@mozilla.org to C:\Program Files (x86)\Mozilla Firefox\browser\features\aushelper@mozilla.org.xpi 1500215336613 addons.xpi INFO Mapping e10srollout@mozilla.org to C:\Program Files (x86)\Mozilla Firefox\browser\features\e10srollout@mozilla.org.xpi 1500215336613 addons.xpi INFO Mapping firefox@getpocket.com to C:\Program Files (x86)\Mozilla Firefox\browser\features\firefox@getpocket.com.xpi 1500215336613 addons.xpi INFO Mapping webcompat@mozilla.org to C:\Program Files (x86)\Mozilla Firefox\browser\features\webcompat@mozilla.org.xpi 1500215336615 addons.xpi INFO Mapping {972ce4c6-7e08-4474-a285-3208198ce6fd} to C:\Program Files (x86)\Mozilla Firefox\browser\extensions\{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi 1500215336615 addons.xpi DEBUG Skipping unavailable install location app-system-share 1500215336615 addons.xpi DEBUG Skipping unavailable install location app-system-local 1500215336616 addons.xpi DEBUG checkForChanges 1500215336616 addons.xpi INFO SystemAddonInstallLocation directory is missing 1500215336617 addons.xpi DEBUG Loaded add-on state from prefs: {} 1500215336618 addons.xpi DEBUG New add-on fxdriver@googlecode.com in app-profile 1500215336618 addons.xpi DEBUG getModTime: Recursive scan of fxdriver@googlecode.com 1500215336625 addons.xpi DEBUG New add-on aushelper@mozilla.org in app-system-defaults 1500215336626 addons.xpi DEBUG getModTime: Recursive scan of aushelper@mozilla.org 1500215336627 addons.xpi DEBUG New add-on e10srollout@mozilla.org in app-system-defaults 1500215336627 addons.xpi DEBUG getModTime: Recursive scan of e10srollout@mozilla.org 1500215336628 addons.xpi DEBUG New add-on firefox@getpocket.com in app-system-defaults 1500215336628 addons.xpi DEBUG getModTime: Recursive scan of firefox@getpocket.com 1500215336628 addons.xpi DEBUG New add-on webcompat@mozilla.org in app-system-defaults 1500215336629 addons.xpi DEBUG getModTime: Recursive scan of webcompat@mozilla.org 1500215336629 addons.xpi DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} in app-global 1500215336630 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} 1500215336630 addons.xpi DEBUG getInstallState changed: true, state: {"app-profile":{"fxdriver@googlecode.com":{"d":"C:\\Users\\SHRUTI~1.SHA\\AppData\\Local\\Temp\\anonymous81977192964358594webdriver-profile\\extensions\\fxdriver@googlecode.com","st":1500215335184,"mt":1500215335167}},"app-system-defaults":{"aushelper@mozilla.org":{"d":"C:\\Program Files (x86)\\Mozilla Firefox\\browser\\features\\aushelper@mozilla.org.xpi","st":1497315741401},"e10srollout@mozilla.org":{"d":"C:\\Program Files (x86)\\Mozilla Firefox\\browser\\features\\e10srollout@mozilla.org.xpi","st":1497315741398},"firefox@getpocket.com":{"d":"C:\\Program Files (x86)\\Mozilla Firefox\\browser\\features\\firefox@getpocket.com.xpi","st":1497315741395},"webcompat@mozilla.org":{"d":"C:\\Program Files (x86)\\Mozilla Firefox\\browser\\features\\webcompat@mozilla.org.xpi","st":1497315741341}},"app-global":{"{972ce4c6-7e08-4474-a285-3208198ce6fd}":{"d":"C:\\Program Files (x86)\\Mozilla Firefox\\browser\\extensions\\{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","st":1497315741403}}} 1500215336640 addons.xpi-utils DEBUG Opening XPI database C:\Users\SHRUTI~1.SHA\AppData\Local\Temp\anonymous81977192964358594webdriver-profile\extensions.json 1500215336644 addons.xpi-utils DEBUG New add-on fxdriver@googlecode.com installed in app-profile *** Blocklist::_loadBlocklistFromFile: blocklist is disabled 1500215336664 addons.xpi WARN Add-on fxdriver@googlecode.com is not correctly signed. 1500215336664 addons.xpi WARN Add-on fxdriver@googlecode.com is not correctly signed. 1500215336669 DeferredSave.extensions.json DEBUG Save changes 1500215336670 addons.xpi-utils DEBUG New add-on aushelper@mozilla.org installed in app-system-defaults 1500215336676 DeferredSave.extensions.json DEBUG Starting timer 1500215336679 DeferredSave.extensions.json DEBUG Save changes 1500215336679 addons.xpi-utils DEBUG New add-on e10srollout@mozilla.org installed in app-system-defaults 1500215336686 DeferredSave.extensions.json DEBUG Save changes 1500215336688 addons.xpi-utils DEBUG New add-on firefox@getpocket.com installed in app-system-defaults 1500215336696 DeferredSave.extensions.json DEBUG Save changes 1500215336696 addons.xpi-utils DEBUG New add-on webcompat@mozilla.org installed in app-system-defaults 1500215336702 DeferredSave.extensions.json DEBUG Save changes 1500215336702 addons.xpi-utils DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} installed in app-global 1500215336711 DeferredSave.extensions.json DEBUG Starting write 1500215336773 DeferredSave.extensions.json DEBUG Save changes 1500215336773 DeferredSave.extensions.json DEBUG Data changed while write in progress 1500215336774 addons.manager DEBUG Registering startup change 'installed' for fxdriver@googlecode.com 1500215336774 addons.xpi-utils DEBUG Make addon app-profile:fxdriver@googlecode.com visible 1500215336774 DeferredSave.extensions.json DEBUG Save changes 1500215336774 addons.manager DEBUG Registering startup change 'installed' for aushelper@mozilla.org 1500215336780 addons.xpi DEBUG Loading bootstrap scope from C:\Program Files (x86)\Mozilla Firefox\browser\features\aushelper@mozilla.org.xpi 1500215336786 addons.xpi DEBUG Calling bootstrap method install on aushelper@mozilla.org version 2.0 1500215336786 addons.xpi-utils DEBUG Make addon app-system-defaults:aushelper@mozilla.org visible 1500215336787 DeferredSave.extensions.json DEBUG Save changes 1500215336787 addons.manager DEBUG Registering startup change 'installed' for e10srollout@mozilla.org 1500215336787 addons.xpi DEBUG Loading bootstrap scope from C:\Program Files (x86)\Mozilla Firefox\browser\features\e10srollout@mozilla.org.xpi 1500215336791 addons.xpi DEBUG Calling bootstrap method install on e10srollout@mozilla.org version 1.14 1500215336793 addons.xpi-utils DEBUG Make addon app-system-defaults:e10srollout@mozilla.org visible 1500215336793 DeferredSave.extensions.json DEBUG Save changes 1500215336793 addons.manager DEBUG Registering startup change 'installed' for firefox@getpocket.com 1500215336794 addons.xpi DEBUG Loading bootstrap scope from C:\Program Files (x86)\Mozilla Firefox\browser\features\firefox@getpocket.com.xpi 1500215336798 addons.xpi DEBUG Calling bootstrap method install on firefox@getpocket.com version 1.0.5 1500215336798 addons.xpi-utils DEBUG Make addon app-system-defaults:firefox@getpocket.com visible 1500215336799 DeferredSave.extensions.json DEBUG Save changes 1500215336799 addons.manager DEBUG Registering startup change 'installed' for webcompat@mozilla.org 1500215336799 addons.xpi DEBUG Loading bootstrap scope from C:\Program Files (x86)\Mozilla Firefox\browser\features\webcompat@mozilla.org.xpi 1500215336802 addons.xpi DEBUG Calling bootstrap method install on webcompat@mozilla.org version 1.0 1500215336802 addons.xpi-utils DEBUG Make addon app-system-defaults:webcompat@mozilla.org visible 1500215336803 DeferredSave.extensions.json DEBUG Save changes 1500215336803 addons.xpi-utils DEBUG Make addon app-global:{972ce4c6-7e08-4474-a285-3208198ce6fd} visible 1500215336804 DeferredSave.extensions.json DEBUG Save changes 1500215336804 addons.xpi DEBUG Updating XPIState for {"id":"fxdriver@googlecode.com","syncGUID":"{c6d1c5f5-ed85-4808-8a68-7d55e6247d77}","location":"app-profile","version":"3.4.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Firefox WebDriver","description":"WebDriver implementation for Firefox","creator":"Simon Stewart","homepageURL":null},"visible":true,"active":false,"userDisabled":false,"appDisabled":true,"descriptor":"C:\\Users\\SHRUTI~1.SHA\\AppData\\Local\\Temp\\anonymous81977192964358594webdriver-profile\\extensions\\fxdriver@googlecode.com","installDate":1500215335184,"updateDate":1500215335184,"applyBackgroundUpdates":1,"bootstrap":false,"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} 1500215336804 addons.xpi DEBUG Updating XPIState for {"id":"aushelper@mozilla.org","syncGUID":"{3f1f7989-b430-47fe-ac43-22ef78cee93c}","location":"app-system-defaults","version":"2.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":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,"descriptor":"C:\\Program Files (x86)\\Mozilla Firefox\\browser\\features\\aushelper@mozilla.org.xpi","installDate":1497315741401,"updateDate":1497315741401,"applyBackgroundUpdates":1,"bootstrap":true,"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":"53.0.3","maxVersion":"53.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true,"dependencies":[],"hasEmbeddedWebExtension":false,"mpcOptedOut":false,"userPermissions":null} 1500215336804 addons.xpi DEBUG getModTime: Recursive scan of aushelper@mozilla.org 1500215336805 addons.xpi DEBUG Updating XPIState for {"id":"e10srollout@mozilla.org","syncGUID":"{9911a308-9669-4837-b5f1-87fc2a5da4c2}","location":"app-system-defaults","version":"1.14","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":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,"descriptor":"C:\\Program Files (x86)\\Mozilla Firefox\\browser\\features\\e10srollout@mozilla.org.xpi","installDate":1497315741398,"updateDate":1497315741398,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":8478,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"53.0.3","maxVersion":"53.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true,"dependencies":[],"hasEmbeddedWebExtension":false,"mpcOptedOut":false,"userPermissions":null} 1500215336805 addons.xpi DEBUG getModTime: Recursive scan of e10srollout@mozilla.org 1500215336805 addons.xpi DEBUG Updating XPIState for {"id":"firefox@getpocket.com","syncGUID":"{59c3244f-ab05-474d-aa09-1d6394430ab6}","location":"app-system-defaults","version":"1.0.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":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,"descriptor":"C:\\Program Files (x86)\\Mozilla Firefox\\browser\\features\\firefox@getpocket.com.xpi","installDate":1497315741395,"updateDate":1497315741395,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":913565,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"53.0.3","maxVersion":"53.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true,"dependencies":[],"hasEmbeddedWebExtension":false,"mpcOptedOut":false,"userPermissions":null} 1500215336805 addons.xpi DEBUG getModTime: Recursive scan of firefox@getpocket.com 1500215336806 addons.xpi DEBUG Updating XPIState for {"id":"webcompat@mozilla.org","syncGUID":"{6d9f0b26-65d8-4f84-b68b-1f45874c5fc3}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":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,"descriptor":"C:\\Program Files (x86)\\Mozilla Firefox\\browser\\features\\webcompat@mozilla.org.xpi","installDate":1497315741341,"updateDate":1497315741341,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":1456,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"53.0.3","maxVersion":"53.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true,"dependencies":[],"hasEmbeddedWebExtension":false,"mpcOptedOut":false,"userPermissions":null} 1500215336806 addons.xpi DEBUG getModTime: Recursive scan of webcompat@mozilla.org 1500215336806 addons.xpi DEBUG Updating XPIState for {"id":"{972ce4c6-7e08-4474-a285-3208198ce6fd}","syncGUID":"{09f7f4b4-6c62-46f0-a014-eaffa9afeb69}","location":"app-global","version":"53.0.3","type":"theme","internalName":"classic/1.0","updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":"chrome://browser/content/default-theme-icon.svg","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":"C:\\Program Files (x86)\\Mozilla Firefox\\browser\\extensions\\{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","installDate":1497315741403,"updateDate":1497315741403,"applyBackgroundUpdates":1,"skinnable":true,"size":8207,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"53.0.3","maxVersion":"53.0.3"}],"targetPlatforms":[],"seen":true,"dependencies":[],"hasEmbeddedWebExtension":false,"userPermissions":null} 1500215336807 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} 1500215336808 DeferredSave.extensions.json DEBUG Save changes 1500215336808 addons.xpi DEBUG Updating database with changes to installed add-ons 1500215336808 addons.xpi-utils DEBUG Updating add-on states 1500215336810 addons.xpi-utils DEBUG Writing add-ons list 1500215336821 addons.xpi DEBUG Registering manifest for C:\Program Files (x86)\Mozilla Firefox\browser\features\aushelper@mozilla.org.xpi 1500215336822 addons.xpi DEBUG Calling bootstrap method startup on aushelper@mozilla.org version 2.0 1500215336824 addons.xpi DEBUG Registering manifest for C:\Program Files (x86)\Mozilla Firefox\browser\features\e10srollout@mozilla.org.xpi 1500215336826 addons.xpi DEBUG Calling bootstrap method startup on e10srollout@mozilla.org version 1.14 1500215336826 addons.xpi DEBUG Registering manifest for C:\Program Files (x86)\Mozilla Firefox\browser\features\firefox@getpocket.com.xpi 1500215336828 addons.xpi DEBUG Calling bootstrap method startup on firefox@getpocket.com version 1.0.5 1500215336828 addons.xpi DEBUG Registering manifest for C:\Program Files (x86)\Mozilla Firefox\browser\features\webcompat@mozilla.org.xpi 1500215336831 addons.xpi DEBUG Calling bootstrap method startup on webcompat@mozilla.org version 1.0 1500215336834 addons.manager DEBUG Registering shutdown blocker for XPIProvider 1500215336834 addons.manager DEBUG Provider finished startup: XPIProvider 1500215336834 addons.manager DEBUG Starting provider: LightweightThemeManager 1500215336834 addons.manager DEBUG Registering shutdown blocker for LightweightThemeManager 1500215336835 addons.manager DEBUG Provider finished startup: LightweightThemeManager 1500215336835 addons.manager DEBUG Starting provider: GMPProvider 1500215336842 addons.manager DEBUG Registering shutdown blocker for GMPProvider 1500215336842 addons.manager DEBUG Provider finished startup: GMPProvider 1500215336842 addons.manager DEBUG Starting provider: PluginProvider 1500215336842 addons.manager DEBUG Registering shutdown blocker for PluginProvider 1500215336843 addons.manager DEBUG Provider finished startup: PluginProvider 1500215336843 addons.manager DEBUG Completed startup sequence 1500215337625 addons.manager DEBUG Starting provider: 1500215337626 addons.manager DEBUG Registering shutdown blocker for 1500215337626 addons.manager DEBUG Provider finished startup: 1500215338182 DeferredSave.extensions.json DEBUG Write succeeded 1500215338183 addons.xpi-utils DEBUG XPI Database saved, setting schema version preference to 19 1500215338183 DeferredSave.extensions.json DEBUG Starting timer 1500215338206 DeferredSave.extensions.json DEBUG Starting write 1500215338211 addons.repository DEBUG No addons.json found. 1500215338212 DeferredSave.addons.json DEBUG Save changes 1500215338215 DeferredSave.addons.json DEBUG Starting timer 1500215338533 addons.manager DEBUG Starting provider: PreviousExperimentProvider 1500215338534 addons.manager DEBUG Registering shutdown blocker for PreviousExperimentProvider 1500215338534 addons.manager DEBUG Provider finished startup: PreviousExperimentProvider 1500215338535 DeferredSave.addons.json DEBUG Starting write 1500215338555 DeferredSave.extensions.json DEBUG Write succeeded 1500215338613 DeferredSave.addons.json DEBUG Write succeeded Crash Annotation GraphicsCriticalError: |[C0][GFX1-]: PossiblyBrokenSurfaceSharing_UnexpectedAMDGPU (t=2.69539) [GFX1-]: PossiblyBrokenSurfaceSharing_UnexpectedAMDGPU [GPU 13048] WARNING: pipe error: 109: file c:/builds/moz2_slave/m-rel-w32-00000000000000000000/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 =============================================== suite Total tests run: 3, Failures: 0, Skips: 3 Configuration Failures: 1, Skips: 0 =============================================== 1500215357146 addons.manager DEBUG Application has been upgraded 1500215357210 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/XPIProvider.jsm: ["XPIProvider"] 1500215357212 addons.manager DEBUG Loaded provider scope for resource://gre/modules/LightweightThemeManager.jsm: ["LightweightThemeManager"] 1500215357215 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/GMPProvider.jsm 1500215357218 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/PluginProvider.jsm 1500215357218 addons.manager DEBUG Starting provider: XPIProvider 1500215357219 addons.xpi DEBUG startup 1500215357220 addons.xpi INFO Mapping fxdriver@googlecode.com to C:\Users\SHRUTI~1.SHA\AppData\Local\Temp\anonymous2108009654131295784webdriver-profile\extensions\fxdriver@googlecode.com 1500215357221 addons.xpi DEBUG Ignoring file entry whose name is not a valid add-on ID: C:\Users\SHRUTI~1.SHA\AppData\Local\Temp\anonymous2108009654131295784webdriver-profile\extensions\webdriver-staging 1500215357221 addons.xpi INFO Removing all system add-on upgrades. 1500215357222 addons.xpi INFO SystemAddonInstallLocation directory is missing 1500215357223 addons.xpi INFO Mapping aushelper@mozilla.org to C:\Program Files (x86)\Mozilla Firefox\browser\features\aushelper@mozilla.org.xpi 1500215357224 addons.xpi INFO Mapping e10srollout@mozilla.org to C:\Program Files (x86)\Mozilla Firefox\browser\features\e10srollout@mozilla.org.xpi 1500215357224 addons.xpi INFO Mapping firefox@getpocket.com to C:\Program Files (x86)\Mozilla Firefox\browser\features\firefox@getpocket.com.xpi 1500215357224 addons.xpi INFO Mapping webcompat@mozilla.org to C:\Program Files (x86)\Mozilla Firefox\browser\features\webcompat@mozilla.org.xpi 1500215357226 addons.xpi INFO Mapping {972ce4c6-7e08-4474-a285-3208198ce6fd} to C:\Program Files (x86)\Mozilla Firefox\browser\extensions\{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi 1500215357226 addons.xpi DEBUG Skipping unavailable install location app-system-share 1500215357226 addons.xpi DEBUG Skipping unavailable install location app-system-local 1500215357227 addons.xpi DEBUG checkForChanges 1500215357227 addons.xpi INFO SystemAddonInstallLocation directory is missing 1500215357228 addons.xpi DEBUG Loaded add-on state from prefs: {} 1500215357228 addons.xpi DEBUG New add-on fxdriver@googlecode.com in app-profile 1500215357229 addons.xpi DEBUG getModTime: Recursive scan of fxdriver@googlecode.com 1500215357238 addons.xpi DEBUG New add-on aushelper@mozilla.org in app-system-defaults 1500215357238 addons.xpi DEBUG getModTime: Recursive scan of aushelper@mozilla.org 1500215357239 addons.xpi DEBUG New add-on e10srollout@mozilla.org in app-system-defaults 1500215357239 addons.xpi DEBUG getModTime: Recursive scan of e10srollout@mozilla.org 1500215357240 addons.xpi DEBUG New add-on firefox@getpocket.com in app-system-defaults 1500215357240 addons.xpi DEBUG getModTime: Recursive scan of firefox@getpocket.com 1500215357241 addons.xpi DEBUG New add-on webcompat@mozilla.org in app-system-defaults 1500215357241 addons.xpi DEBUG getModTime: Recursive scan of webcompat@mozilla.org 1500215357242 addons.xpi DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} in app-global 1500215357242 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} 1500215357243 addons.xpi DEBUG getInstallState changed: true, state: {"app-profile":{"fxdriver@googlecode.com":{"d":"C:\\Users\\SHRUTI~1.SHA\\AppData\\Local\\Temp\\anonymous2108009654131295784webdriver-profile\\extensions\\fxdriver@googlecode.com","st":1500215356466,"mt":1500215356448}},"app-system-defaults":{"aushelper@mozilla.org":{"d":"C:\\Program Files (x86)\\Mozilla Firefox\\browser\\features\\aushelper@mozilla.org.xpi","st":1497315741401},"e10srollout@mozilla.org":{"d":"C:\\Program Files (x86)\\Mozilla Firefox\\browser\\features\\e10srollout@mozilla.org.xpi","st":1497315741398},"firefox@getpocket.com":{"d":"C:\\Program Files (x86)\\Mozilla Firefox\\browser\\features\\firefox@getpocket.com.xpi","st":1497315741395},"webcompat@mozilla.org":{"d":"C:\\Program Files (x86)\\Mozilla Firefox\\browser\\features\\webcompat@mozilla.org.xpi","st":1497315741341}},"app-global":{"{972ce4c6-7e08-4474-a285-3208198ce6fd}":{"d":"C:\\Program Files (x86)\\Mozilla Firefox\\browser\\extensions\\{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","st":1497315741403}}} 1500215357253 addons.xpi-utils DEBUG Opening XPI database C:\Users\SHRUTI~1.SHA\AppData\Local\Temp\anonymous2108009654131295784webdriver-profile\extensions.json 1500215357256 addons.xpi-utils DEBUG New add-on fxdriver@googlecode.com installed in app-profile *** Blocklist::_loadBlocklistFromFile: blocklist is disabled 1500215357279 addons.xpi WARN Add-on fxdriver@googlecode.com is not correctly signed. 1500215357280 addons.xpi WARN Add-on fxdriver@googlecode.com is not correctly signed. 1500215357283 DeferredSave.extensions.json DEBUG Save changes 1500215357284 addons.xpi-utils DEBUG New add-on aushelper@mozilla.org installed in app-system-defaults 1500215357289 DeferredSave.extensions.json DEBUG Starting timer 1500215357292 DeferredSave.extensions.json DEBUG Save changes 1500215357292 addons.xpi-utils DEBUG New add-on e10srollout@mozilla.org installed in app-system-defaults 1500215357298 DeferredSave.extensions.json DEBUG Save changes 1500215357299 addons.xpi-utils DEBUG New add-on firefox@getpocket.com installed in app-system-defaults 1500215357305 DeferredSave.extensions.json DEBUG Save changes 1500215357305 addons.xpi-utils DEBUG New add-on webcompat@mozilla.org installed in app-system-defaults 1500215357310 DeferredSave.extensions.json DEBUG Save changes 1500215357311 addons.xpi-utils DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} installed in app-global 1500215357318 DeferredSave.extensions.json DEBUG Starting write 1500215357329 DeferredSave.extensions.json DEBUG Save changes 1500215357329 DeferredSave.extensions.json DEBUG Data changed while write in progress 1500215357330 addons.manager DEBUG Registering startup change 'installed' for fxdriver@googlecode.com 1500215357330 addons.xpi-utils DEBUG Make addon app-profile:fxdriver@googlecode.com visible 1500215357330 DeferredSave.extensions.json DEBUG Save changes 1500215357330 addons.manager DEBUG Registering startup change 'installed' for aushelper@mozilla.org 1500215357336 addons.xpi DEBUG Loading bootstrap scope from C:\Program Files (x86)\Mozilla Firefox\browser\features\aushelper@mozilla.org.xpi 1500215357343 addons.xpi DEBUG Calling bootstrap method install on aushelper@mozilla.org version 2.0 1500215357343 addons.xpi-utils DEBUG Make addon app-system-defaults:aushelper@mozilla.org visible 1500215357343 DeferredSave.extensions.json DEBUG Save changes 1500215357344 addons.manager DEBUG Registering startup change 'installed' for e10srollout@mozilla.org 1500215357344 addons.xpi DEBUG Loading bootstrap scope from C:\Program Files (x86)\Mozilla Firefox\browser\features\e10srollout@mozilla.org.xpi 1500215357348 addons.xpi DEBUG Calling bootstrap method install on e10srollout@mozilla.org version 1.14 1500215357349 addons.xpi-utils DEBUG Make addon app-system-defaults:e10srollout@mozilla.org visible 1500215357350 DeferredSave.extensions.json DEBUG Save changes 1500215357350 addons.manager DEBUG Registering startup change 'installed' for firefox@getpocket.com 1500215357351 addons.xpi DEBUG Loading bootstrap scope from C:\Program Files (x86)\Mozilla Firefox\browser\features\firefox@getpocket.com.xpi 1500215357356 addons.xpi DEBUG Calling bootstrap method install on firefox@getpocket.com version 1.0.5 1500215357356 addons.xpi-utils DEBUG Make addon app-system-defaults:firefox@getpocket.com visible 1500215357356 DeferredSave.extensions.json DEBUG Save changes 1500215357357 addons.manager DEBUG Registering startup change 'installed' for webcompat@mozilla.org 1500215357357 addons.xpi DEBUG Loading bootstrap scope from C:\Program Files (x86)\Mozilla Firefox\browser\features\webcompat@mozilla.org.xpi 1500215357360 addons.xpi DEBUG Calling bootstrap method install on webcompat@mozilla.org version 1.0 1500215357360 addons.xpi-utils DEBUG Make addon app-system-defaults:webcompat@mozilla.org visible 1500215357361 DeferredSave.extensions.json DEBUG Save changes 1500215357361 addons.xpi-utils DEBUG Make addon app-global:{972ce4c6-7e08-4474-a285-3208198ce6fd} visible 1500215357361 DeferredSave.extensions.json DEBUG Save changes 1500215357362 addons.xpi DEBUG Updating XPIState for {"id":"fxdriver@googlecode.com","syncGUID":"{07fc43bb-74f8-4122-9988-a76797c8fea3}","location":"app-profile","version":"3.4.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Firefox WebDriver","description":"WebDriver implementation for Firefox","creator":"Simon Stewart","homepageURL":null},"visible":true,"active":false,"userDisabled":false,"appDisabled":true,"descriptor":"C:\\Users\\SHRUTI~1.SHA\\AppData\\Local\\Temp\\anonymous2108009654131295784webdriver-profile\\extensions\\fxdriver@googlecode.com","installDate":1500215356466,"updateDate":1500215356466,"applyBackgroundUpdates":1,"bootstrap":false,"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} 1500215357362 addons.xpi DEBUG Updating XPIState for {"id":"aushelper@mozilla.org","syncGUID":"{98636ab2-e9d5-48f8-a2d1-5ccabb876b92}","location":"app-system-defaults","version":"2.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":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,"descriptor":"C:\\Program Files (x86)\\Mozilla Firefox\\browser\\features\\aushelper@mozilla.org.xpi","installDate":1497315741401,"updateDate":1497315741401,"applyBackgroundUpdates":1,"bootstrap":true,"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":"53.0.3","maxVersion":"53.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true,"dependencies":[],"hasEmbeddedWebExtension":false,"mpcOptedOut":false,"userPermissions":null} 1500215357362 addons.xpi DEBUG getModTime: Recursive scan of aushelper@mozilla.org 1500215357363 addons.xpi DEBUG Updating XPIState for {"id":"e10srollout@mozilla.org","syncGUID":"{39b67be2-8aed-48f4-92ea-2b791e7c81ee}","location":"app-system-defaults","version":"1.14","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":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,"descriptor":"C:\\Program Files (x86)\\Mozilla Firefox\\browser\\features\\e10srollout@mozilla.org.xpi","installDate":1497315741398,"updateDate":1497315741398,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":8478,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"53.0.3","maxVersion":"53.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true,"dependencies":[],"hasEmbeddedWebExtension":false,"mpcOptedOut":false,"userPermissions":null} 1500215357363 addons.xpi DEBUG getModTime: Recursive scan of e10srollout@mozilla.org 1500215357363 addons.xpi DEBUG Updating XPIState for {"id":"firefox@getpocket.com","syncGUID":"{0c152844-c932-492e-8289-ddda9c294d61}","location":"app-system-defaults","version":"1.0.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":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,"descriptor":"C:\\Program Files (x86)\\Mozilla Firefox\\browser\\features\\firefox@getpocket.com.xpi","installDate":1497315741395,"updateDate":1497315741395,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":913565,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"53.0.3","maxVersion":"53.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true,"dependencies":[],"hasEmbeddedWebExtension":false,"mpcOptedOut":false,"userPermissions":null} 1500215357363 addons.xpi DEBUG getModTime: Recursive scan of firefox@getpocket.com 1500215357364 addons.xpi DEBUG Updating XPIState for {"id":"webcompat@mozilla.org","syncGUID":"{2543319d-67be-4d9f-b6d7-9b9fd7572b96}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":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,"descriptor":"C:\\Program Files (x86)\\Mozilla Firefox\\browser\\features\\webcompat@mozilla.org.xpi","installDate":1497315741341,"updateDate":1497315741341,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":1456,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"53.0.3","maxVersion":"53.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true,"dependencies":[],"hasEmbeddedWebExtension":false,"mpcOptedOut":false,"userPermissions":null} 1500215357364 addons.xpi DEBUG getModTime: Recursive scan of webcompat@mozilla.org 1500215357364 addons.xpi DEBUG Updating XPIState for {"id":"{972ce4c6-7e08-4474-a285-3208198ce6fd}","syncGUID":"{0a93f962-8572-4aa4-bdff-501d6d127e30}","location":"app-global","version":"53.0.3","type":"theme","internalName":"classic/1.0","updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":"chrome://browser/content/default-theme-icon.svg","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":"C:\\Program Files (x86)\\Mozilla Firefox\\browser\\extensions\\{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","installDate":1497315741403,"updateDate":1497315741403,"applyBackgroundUpdates":1,"skinnable":true,"size":8207,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"53.0.3","maxVersion":"53.0.3"}],"targetPlatforms":[],"seen":true,"dependencies":[],"hasEmbeddedWebExtension":false,"userPermissions":null} 1500215357365 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} 1500215357366 DeferredSave.extensions.json DEBUG Save changes 1500215357366 addons.xpi DEBUG Updating database with changes to installed add-ons 1500215357366 addons.xpi-utils DEBUG Updating add-on states 1500215357369 addons.xpi-utils DEBUG Writing add-ons list 1500215357379 addons.xpi DEBUG Registering manifest for C:\Program Files (x86)\Mozilla Firefox\browser\features\aushelper@mozilla.org.xpi 1500215357380 addons.xpi DEBUG Calling bootstrap method startup on aushelper@mozilla.org version 2.0 1500215357382 addons.xpi DEBUG Registering manifest for C:\Program Files (x86)\Mozilla Firefox\browser\features\e10srollout@mozilla.org.xpi 1500215357384 addons.xpi DEBUG Calling bootstrap method startup on e10srollout@mozilla.org version 1.14 1500215357385 addons.xpi DEBUG Registering manifest for C:\Program Files (x86)\Mozilla Firefox\browser\features\firefox@getpocket.com.xpi 1500215357387 addons.xpi DEBUG Calling bootstrap method startup on firefox@getpocket.com version 1.0.5 1500215357388 addons.xpi DEBUG Registering manifest for C:\Program Files (x86)\Mozilla Firefox\browser\features\webcompat@mozilla.org.xpi 1500215357390 addons.xpi DEBUG Calling bootstrap method startup on webcompat@mozilla.org version 1.0 1500215357392 addons.manager DEBUG Registering shutdown blocker for XPIProvider 1500215357393 addons.manager DEBUG Provider finished startup: XPIProvider 1500215357393 addons.manager DEBUG Starting provider: LightweightThemeManager 1500215357393 addons.manager DEBUG Registering shutdown blocker for LightweightThemeManager 1500215357393 addons.manager DEBUG Provider finished startup: LightweightThemeManager 1500215357393 addons.manager DEBUG Starting provider: GMPProvider 1500215357401 addons.manager DEBUG Registering shutdown blocker for GMPProvider 1500215357401 addons.manager DEBUG Provider finished startup: GMPProvider 1500215357401 addons.manager DEBUG Starting provider: PluginProvider 1500215357401 addons.manager DEBUG Registering shutdown blocker for PluginProvider 1500215357401 addons.manager DEBUG Provider finished startup: PluginProvider 1500215357402 addons.manager DEBUG Completed startup sequence 1500215357972 addons.manager DEBUG Starting provider: 1500215357973 addons.manager DEBUG Registering shutdown blocker for 1500215357973 addons.manager DEBUG Provider finished startup: 1500215358264 DeferredSave.extensions.json DEBUG Write succeeded 1500215358265 addons.xpi-utils DEBUG XPI Database saved, setting schema version preference to 19 1500215358265 DeferredSave.extensions.json DEBUG Starting timer 1500215358291 DeferredSave.extensions.json DEBUG Starting write 1500215358299 addons.repository DEBUG No addons.json found. 1500215358299 DeferredSave.addons.json DEBUG Save changes 1500215358303 DeferredSave.addons.json DEBUG Starting timer 1500215358364 addons.manager DEBUG Starting provider: PreviousExperimentProvider 1500215358364 addons.manager DEBUG Registering shutdown blocker for PreviousExperimentProvider 1500215358364 addons.manager DEBUG Provider finished startup: PreviousExperimentProvider 1500215358367 DeferredSave.addons.json DEBUG Starting write 1500215358388 DeferredSave.extensions.json DEBUG Write succeeded 1500215358438 DeferredSave.addons.json DEBUG Write succeeded Crash Annotation GraphicsCriticalError: |[C0][GFX1-]: PossiblyBrokenSurfaceSharing_UnexpectedAMDGPU (t=3.02688) [GFX1-]: PossiblyBrokenSurfaceSharing_UnexpectedAMDGPU =============================================== suite Total tests run: 3, Failures: 0, Skips: 3 Configuration Failures: 1, Skips: 0 ===============================================
krmahadevan commented 7 years ago

@NewUser310 - How are you running this ? My sample has a main method. Can you please rename the class to something else, and from within your IDE run it once again. The error still suggests that you aren't running what I shared, but perhaps your java class. Both the classes have the same name. Yours has web driver involved and mine doesn't. I think you are perhaps getting confused due to the same names.

NewUser310 commented 7 years ago

I am trying in the same way you suggested. I created a new class and pasted your code. Tool asks me to run as Java code or TestNG. I select Java and after that once it runs, it displays me the below output. Can it be a reason that i tried to upgrade my Eclipse IDE (i know it may not be but just curious).

<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd">

1500216188865 addons.manager DEBUG Application has been upgraded 1500216188935 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/XPIProvider.jsm: ["XPIProvider"] 1500216188937 addons.manager DEBUG Loaded provider scope for resource://gre/modules/LightweightThemeManager.jsm: ["LightweightThemeManager"] 1500216188940 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/GMPProvider.jsm 1500216188943 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/PluginProvider.jsm 1500216188944 addons.manager DEBUG Starting provider: XPIProvider 1500216188945 addons.xpi DEBUG startup 1500216188947 addons.xpi INFO Mapping fxdriver@googlecode.com to C:\Users\SHRUTI~1.SHA\AppData\Local\Temp\anonymous4495711813036572064webdriver-profile\extensions\fxdriver@googlecode.com 1500216188947 addons.xpi DEBUG Ignoring file entry whose name is not a valid add-on ID: C:\Users\SHRUTI~1.SHA\AppData\Local\Temp\anonymous4495711813036572064webdriver-profile\extensions\webdriver-staging 1500216188948 addons.xpi INFO Removing all system add-on upgrades. 1500216188948 addons.xpi INFO SystemAddonInstallLocation directory is missing 1500216188951 addons.xpi INFO Mapping aushelper@mozilla.org to C:\Program Files (x86)\Mozilla Firefox\browser\features\aushelper@mozilla.org.xpi 1500216188951 addons.xpi INFO Mapping e10srollout@mozilla.org to C:\Program Files (x86)\Mozilla Firefox\browser\features\e10srollout@mozilla.org.xpi 1500216188952 addons.xpi INFO Mapping firefox@getpocket.com to C:\Program Files (x86)\Mozilla Firefox\browser\features\firefox@getpocket.com.xpi 1500216188952 addons.xpi INFO Mapping webcompat@mozilla.org to C:\Program Files (x86)\Mozilla Firefox\browser\features\webcompat@mozilla.org.xpi 1500216188954 addons.xpi INFO Mapping {972ce4c6-7e08-4474-a285-3208198ce6fd} to C:\Program Files (x86)\Mozilla Firefox\browser\extensions\{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi 1500216188954 addons.xpi DEBUG Skipping unavailable install location app-system-share 1500216188954 addons.xpi DEBUG Skipping unavailable install location app-system-local 1500216188955 addons.xpi DEBUG checkForChanges 1500216188955 addons.xpi INFO SystemAddonInstallLocation directory is missing 1500216188956 addons.xpi DEBUG Loaded add-on state from prefs: {} 1500216188956 addons.xpi DEBUG New add-on fxdriver@googlecode.com in app-profile 1500216188957 addons.xpi DEBUG getModTime: Recursive scan of fxdriver@googlecode.com 1500216188965 addons.xpi DEBUG New add-on aushelper@mozilla.org in app-system-defaults 1500216188966 addons.xpi DEBUG getModTime: Recursive scan of aushelper@mozilla.org 1500216188967 addons.xpi DEBUG New add-on e10srollout@mozilla.org in app-system-defaults 1500216188967 addons.xpi DEBUG getModTime: Recursive scan of e10srollout@mozilla.org 1500216188968 addons.xpi DEBUG New add-on firefox@getpocket.com in app-system-defaults 1500216188968 addons.xpi DEBUG getModTime: Recursive scan of firefox@getpocket.com 1500216188969 addons.xpi DEBUG New add-on webcompat@mozilla.org in app-system-defaults 1500216188969 addons.xpi DEBUG getModTime: Recursive scan of webcompat@mozilla.org 1500216188970 addons.xpi DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} in app-global 1500216188970 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} 1500216188971 addons.xpi DEBUG getInstallState changed: true, state: {"app-profile":{"fxdriver@googlecode.com":{"d":"C:\\Users\\SHRUTI~1.SHA\\AppData\\Local\\Temp\\anonymous4495711813036572064webdriver-profile\\extensions\\fxdriver@googlecode.com","st":1500216188252,"mt":1500216188232}},"app-system-defaults":{"aushelper@mozilla.org":{"d":"C:\\Program Files (x86)\\Mozilla Firefox\\browser\\features\\aushelper@mozilla.org.xpi","st":1497315741401},"e10srollout@mozilla.org":{"d":"C:\\Program Files (x86)\\Mozilla Firefox\\browser\\features\\e10srollout@mozilla.org.xpi","st":1497315741398},"firefox@getpocket.com":{"d":"C:\\Program Files (x86)\\Mozilla Firefox\\browser\\features\\firefox@getpocket.com.xpi","st":1497315741395},"webcompat@mozilla.org":{"d":"C:\\Program Files (x86)\\Mozilla Firefox\\browser\\features\\webcompat@mozilla.org.xpi","st":1497315741341}},"app-global":{"{972ce4c6-7e08-4474-a285-3208198ce6fd}":{"d":"C:\\Program Files (x86)\\Mozilla Firefox\\browser\\extensions\\{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","st":1497315741403}}} 1500216188980 addons.xpi-utils DEBUG Opening XPI database C:\Users\SHRUTI~1.SHA\AppData\Local\Temp\anonymous4495711813036572064webdriver-profile\extensions.json 1500216188983 addons.xpi-utils DEBUG New add-on fxdriver@googlecode.com installed in app-profile *** Blocklist::_loadBlocklistFromFile: blocklist is disabled 1500216189003 addons.xpi WARN Add-on fxdriver@googlecode.com is not correctly signed. 1500216189004 addons.xpi WARN Add-on fxdriver@googlecode.com is not correctly signed. 1500216189006 DeferredSave.extensions.json DEBUG Save changes 1500216189007 addons.xpi-utils DEBUG New add-on aushelper@mozilla.org installed in app-system-defaults 1500216189012 DeferredSave.extensions.json DEBUG Starting timer 1500216189014 DeferredSave.extensions.json DEBUG Save changes 1500216189014 addons.xpi-utils DEBUG New add-on e10srollout@mozilla.org installed in app-system-defaults 1500216189020 DeferredSave.extensions.json DEBUG Save changes 1500216189021 addons.xpi-utils DEBUG New add-on firefox@getpocket.com installed in app-system-defaults 1500216189027 DeferredSave.extensions.json DEBUG Save changes 1500216189028 addons.xpi-utils DEBUG New add-on webcompat@mozilla.org installed in app-system-defaults 1500216189032 DeferredSave.extensions.json DEBUG Save changes 1500216189033 addons.xpi-utils DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} installed in app-global 1500216189038 DeferredSave.extensions.json DEBUG Save changes 1500216189039 addons.manager DEBUG Registering startup change 'installed' for fxdriver@googlecode.com 1500216189039 addons.xpi-utils DEBUG Make addon app-profile:fxdriver@googlecode.com visible 1500216189039 DeferredSave.extensions.json DEBUG Save changes 1500216189040 addons.manager DEBUG Registering startup change 'installed' for aushelper@mozilla.org 1500216189046 addons.xpi DEBUG Loading bootstrap scope from C:\Program Files (x86)\Mozilla Firefox\browser\features\aushelper@mozilla.org.xpi 1500216189052 addons.xpi DEBUG Calling bootstrap method install on aushelper@mozilla.org version 2.0 1500216189052 addons.xpi-utils DEBUG Make addon app-system-defaults:aushelper@mozilla.org visible 1500216189053 DeferredSave.extensions.json DEBUG Save changes 1500216189053 addons.manager DEBUG Registering startup change 'installed' for e10srollout@mozilla.org 1500216189054 addons.xpi DEBUG Loading bootstrap scope from C:\Program Files (x86)\Mozilla Firefox\browser\features\e10srollout@mozilla.org.xpi 1500216189060 addons.xpi DEBUG Calling bootstrap method install on e10srollout@mozilla.org version 1.14 1500216189061 addons.xpi-utils DEBUG Make addon app-system-defaults:e10srollout@mozilla.org visible 1500216189061 DeferredSave.extensions.json DEBUG Save changes 1500216189061 addons.manager DEBUG Registering startup change 'installed' for firefox@getpocket.com 1500216189062 addons.xpi DEBUG Loading bootstrap scope from C:\Program Files (x86)\Mozilla Firefox\browser\features\firefox@getpocket.com.xpi 1500216189068 addons.xpi DEBUG Calling bootstrap method install on firefox@getpocket.com version 1.0.5 1500216189068 addons.xpi-utils DEBUG Make addon app-system-defaults:firefox@getpocket.com visible 1500216189068 DeferredSave.extensions.json DEBUG Save changes 1500216189069 addons.manager DEBUG Registering startup change 'installed' for webcompat@mozilla.org 1500216189069 addons.xpi DEBUG Loading bootstrap scope from C:\Program Files (x86)\Mozilla Firefox\browser\features\webcompat@mozilla.org.xpi 1500216189073 addons.xpi DEBUG Calling bootstrap method install on webcompat@mozilla.org version 1.0 1500216189073 addons.xpi-utils DEBUG Make addon app-system-defaults:webcompat@mozilla.org visible 1500216189075 DeferredSave.extensions.json DEBUG Save changes 1500216189075 addons.xpi-utils DEBUG Make addon app-global:{972ce4c6-7e08-4474-a285-3208198ce6fd} visible 1500216189075 DeferredSave.extensions.json DEBUG Save changes 1500216189076 addons.xpi DEBUG Updating XPIState for {"id":"fxdriver@googlecode.com","syncGUID":"{3cd916a3-30ac-4b4c-be67-f01fcaa06a64}","location":"app-profile","version":"3.4.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Firefox WebDriver","description":"WebDriver implementation for Firefox","creator":"Simon Stewart","homepageURL":null},"visible":true,"active":false,"userDisabled":false,"appDisabled":true,"descriptor":"C:\\Users\\SHRUTI~1.SHA\\AppData\\Local\\Temp\\anonymous4495711813036572064webdriver-profile\\extensions\\fxdriver@googlecode.com","installDate":1500216188252,"updateDate":1500216188252,"applyBackgroundUpdates":1,"bootstrap":false,"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} 1500216189076 addons.xpi DEBUG Updating XPIState for {"id":"aushelper@mozilla.org","syncGUID":"{c43ebe5d-4e7b-46cb-91bd-bb545801cba6}","location":"app-system-defaults","version":"2.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":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,"descriptor":"C:\\Program Files (x86)\\Mozilla Firefox\\browser\\features\\aushelper@mozilla.org.xpi","installDate":1497315741401,"updateDate":1497315741401,"applyBackgroundUpdates":1,"bootstrap":true,"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":"53.0.3","maxVersion":"53.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true,"dependencies":[],"hasEmbeddedWebExtension":false,"mpcOptedOut":false,"userPermissions":null} 1500216189076 addons.xpi DEBUG getModTime: Recursive scan of aushelper@mozilla.org 1500216189078 addons.xpi DEBUG Updating XPIState for {"id":"e10srollout@mozilla.org","syncGUID":"{f64dcdbf-15ef-4a4e-b5b5-3a294e786474}","location":"app-system-defaults","version":"1.14","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":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,"descriptor":"C:\\Program Files (x86)\\Mozilla Firefox\\browser\\features\\e10srollout@mozilla.org.xpi","installDate":1497315741398,"updateDate":1497315741398,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":8478,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"53.0.3","maxVersion":"53.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true,"dependencies":[],"hasEmbeddedWebExtension":false,"mpcOptedOut":false,"userPermissions":null} 1500216189078 addons.xpi DEBUG getModTime: Recursive scan of e10srollout@mozilla.org 1500216189079 addons.xpi DEBUG Updating XPIState for {"id":"firefox@getpocket.com","syncGUID":"{2aac141f-4594-4960-b56a-c5f16df25934}","location":"app-system-defaults","version":"1.0.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":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,"descriptor":"C:\\Program Files (x86)\\Mozilla Firefox\\browser\\features\\firefox@getpocket.com.xpi","installDate":1497315741395,"updateDate":1497315741395,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":913565,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"53.0.3","maxVersion":"53.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true,"dependencies":[],"hasEmbeddedWebExtension":false,"mpcOptedOut":false,"userPermissions":null} 1500216189079 addons.xpi DEBUG getModTime: Recursive scan of firefox@getpocket.com 1500216189080 addons.xpi DEBUG Updating XPIState for {"id":"webcompat@mozilla.org","syncGUID":"{4a4a1f4f-fee3-4c92-8aed-fdf7236c0b6d}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":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,"descriptor":"C:\\Program Files (x86)\\Mozilla Firefox\\browser\\features\\webcompat@mozilla.org.xpi","installDate":1497315741341,"updateDate":1497315741341,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":1456,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"53.0.3","maxVersion":"53.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true,"dependencies":[],"hasEmbeddedWebExtension":false,"mpcOptedOut":false,"userPermissions":null} 1500216189080 addons.xpi DEBUG getModTime: Recursive scan of webcompat@mozilla.org 1500216189082 addons.xpi DEBUG Updating XPIState for {"id":"{972ce4c6-7e08-4474-a285-3208198ce6fd}","syncGUID":"{361b0c0b-e7c1-45a8-b273-a5a4926d587a}","location":"app-global","version":"53.0.3","type":"theme","internalName":"classic/1.0","updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":"chrome://browser/content/default-theme-icon.svg","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":"C:\\Program Files (x86)\\Mozilla Firefox\\browser\\extensions\\{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","installDate":1497315741403,"updateDate":1497315741403,"applyBackgroundUpdates":1,"skinnable":true,"size":8207,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"53.0.3","maxVersion":"53.0.3"}],"targetPlatforms":[],"seen":true,"dependencies":[],"hasEmbeddedWebExtension":false,"userPermissions":null} 1500216189082 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} 1500216189083 DeferredSave.extensions.json DEBUG Save changes 1500216189083 addons.xpi DEBUG Updating database with changes to installed add-ons 1500216189083 addons.xpi-utils DEBUG Updating add-on states 1500216189086 addons.xpi-utils DEBUG Writing add-ons list 1500216189099 addons.xpi DEBUG Registering manifest for C:\Program Files (x86)\Mozilla Firefox\browser\features\aushelper@mozilla.org.xpi 1500216189100 addons.xpi DEBUG Calling bootstrap method startup on aushelper@mozilla.org version 2.0 1500216189102 addons.xpi DEBUG Registering manifest for C:\Program Files (x86)\Mozilla Firefox\browser\features\e10srollout@mozilla.org.xpi 1500216189104 addons.xpi DEBUG Calling bootstrap method startup on e10srollout@mozilla.org version 1.14 1500216189105 addons.xpi DEBUG Registering manifest for C:\Program Files (x86)\Mozilla Firefox\browser\features\firefox@getpocket.com.xpi 1500216189107 addons.xpi DEBUG Calling bootstrap method startup on firefox@getpocket.com version 1.0.5 1500216189108 addons.xpi DEBUG Registering manifest for C:\Program Files (x86)\Mozilla Firefox\browser\features\webcompat@mozilla.org.xpi 1500216189109 addons.xpi DEBUG Calling bootstrap method startup on webcompat@mozilla.org version 1.0 1500216189112 addons.manager DEBUG Registering shutdown blocker for XPIProvider 1500216189113 addons.manager DEBUG Provider finished startup: XPIProvider 1500216189113 addons.manager DEBUG Starting provider: LightweightThemeManager 1500216189114 addons.manager DEBUG Registering shutdown blocker for LightweightThemeManager 1500216189114 addons.manager DEBUG Provider finished startup: LightweightThemeManager 1500216189115 addons.manager DEBUG Starting provider: GMPProvider 1500216189122 addons.manager DEBUG Registering shutdown blocker for GMPProvider 1500216189122 addons.manager DEBUG Provider finished startup: GMPProvider 1500216189122 addons.manager DEBUG Starting provider: PluginProvider 1500216189122 addons.manager DEBUG Registering shutdown blocker for PluginProvider 1500216189123 addons.manager DEBUG Provider finished startup: PluginProvider 1500216189123 addons.manager DEBUG Completed startup sequence 1500216189759 DeferredSave.extensions.json DEBUG Starting write 1500216189771 addons.manager DEBUG Starting provider: 1500216189771 addons.manager DEBUG Registering shutdown blocker for 1500216189771 addons.manager DEBUG Provider finished startup: 1500216190042 addons.repository DEBUG No addons.json found. 1500216190043 DeferredSave.addons.json DEBUG Save changes 1500216190047 DeferredSave.addons.json DEBUG Starting timer 1500216190122 addons.manager DEBUG Starting provider: PreviousExperimentProvider 1500216190122 addons.manager DEBUG Registering shutdown blocker for PreviousExperimentProvider 1500216190123 addons.manager DEBUG Provider finished startup: PreviousExperimentProvider 1500216190126 DeferredSave.extensions.json DEBUG Write succeeded 1500216190126 addons.xpi-utils DEBUG XPI Database saved, setting schema version preference to 19 1500216190127 DeferredSave.addons.json DEBUG Starting write 1500216190182 DeferredSave.addons.json DEBUG Write succeeded Crash Annotation GraphicsCriticalError: |[C0][GFX1-]: PossiblyBrokenSurfaceSharing_UnexpectedAMDGPU (t=2.18945) [GFX1-]: PossiblyBrokenSurfaceSharing_UnexpectedAMDGPU [GPU 20160] WARNING: pipe error: 109: file c:/builds/moz2_slave/m-rel-w32-00000000000000000000/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 =============================================== suite Total tests run: 3, Failures: 0, Skips: 3 Configuration Failures: 1, Skips: 0 =============================================== 1500216209853 addons.manager DEBUG Application has been upgraded 1500216209922 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/XPIProvider.jsm: ["XPIProvider"] 1500216209924 addons.manager DEBUG Loaded provider scope for resource://gre/modules/LightweightThemeManager.jsm: ["LightweightThemeManager"] 1500216209927 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/GMPProvider.jsm 1500216209929 addons.manager DEBUG Loaded provider scope for resource://gre/modules/addons/PluginProvider.jsm 1500216209930 addons.manager DEBUG Starting provider: XPIProvider 1500216209931 addons.xpi DEBUG startup 1500216209932 addons.xpi INFO Mapping fxdriver@googlecode.com to C:\Users\SHRUTI~1.SHA\AppData\Local\Temp\anonymous8401265547481014132webdriver-profile\extensions\fxdriver@googlecode.com 1500216209932 addons.xpi DEBUG Ignoring file entry whose name is not a valid add-on ID: C:\Users\SHRUTI~1.SHA\AppData\Local\Temp\anonymous8401265547481014132webdriver-profile\extensions\webdriver-staging 1500216209932 addons.xpi INFO Removing all system add-on upgrades. 1500216209933 addons.xpi INFO SystemAddonInstallLocation directory is missing 1500216209934 addons.xpi INFO Mapping aushelper@mozilla.org to C:\Program Files (x86)\Mozilla Firefox\browser\features\aushelper@mozilla.org.xpi 1500216209935 addons.xpi INFO Mapping e10srollout@mozilla.org to C:\Program Files (x86)\Mozilla Firefox\browser\features\e10srollout@mozilla.org.xpi 1500216209935 addons.xpi INFO Mapping firefox@getpocket.com to C:\Program Files (x86)\Mozilla Firefox\browser\features\firefox@getpocket.com.xpi 1500216209935 addons.xpi INFO Mapping webcompat@mozilla.org to C:\Program Files (x86)\Mozilla Firefox\browser\features\webcompat@mozilla.org.xpi 1500216209937 addons.xpi INFO Mapping {972ce4c6-7e08-4474-a285-3208198ce6fd} to C:\Program Files (x86)\Mozilla Firefox\browser\extensions\{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi 1500216209937 addons.xpi DEBUG Skipping unavailable install location app-system-share 1500216209937 addons.xpi DEBUG Skipping unavailable install location app-system-local 1500216209938 addons.xpi DEBUG checkForChanges 1500216209938 addons.xpi INFO SystemAddonInstallLocation directory is missing 1500216209939 addons.xpi DEBUG Loaded add-on state from prefs: {} 1500216209939 addons.xpi DEBUG New add-on fxdriver@googlecode.com in app-profile 1500216209940 addons.xpi DEBUG getModTime: Recursive scan of fxdriver@googlecode.com 1500216209947 addons.xpi DEBUG New add-on aushelper@mozilla.org in app-system-defaults 1500216209948 addons.xpi DEBUG getModTime: Recursive scan of aushelper@mozilla.org 1500216209949 addons.xpi DEBUG New add-on e10srollout@mozilla.org in app-system-defaults 1500216209949 addons.xpi DEBUG getModTime: Recursive scan of e10srollout@mozilla.org 1500216209950 addons.xpi DEBUG New add-on firefox@getpocket.com in app-system-defaults 1500216209950 addons.xpi DEBUG getModTime: Recursive scan of firefox@getpocket.com 1500216209950 addons.xpi DEBUG New add-on webcompat@mozilla.org in app-system-defaults 1500216209951 addons.xpi DEBUG getModTime: Recursive scan of webcompat@mozilla.org 1500216209952 addons.xpi DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} in app-global 1500216209952 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} 1500216209952 addons.xpi DEBUG getInstallState changed: true, state: {"app-profile":{"fxdriver@googlecode.com":{"d":"C:\\Users\\SHRUTI~1.SHA\\AppData\\Local\\Temp\\anonymous8401265547481014132webdriver-profile\\extensions\\fxdriver@googlecode.com","st":1500216209322,"mt":1500216209305}},"app-system-defaults":{"aushelper@mozilla.org":{"d":"C:\\Program Files (x86)\\Mozilla Firefox\\browser\\features\\aushelper@mozilla.org.xpi","st":1497315741401},"e10srollout@mozilla.org":{"d":"C:\\Program Files (x86)\\Mozilla Firefox\\browser\\features\\e10srollout@mozilla.org.xpi","st":1497315741398},"firefox@getpocket.com":{"d":"C:\\Program Files (x86)\\Mozilla Firefox\\browser\\features\\firefox@getpocket.com.xpi","st":1497315741395},"webcompat@mozilla.org":{"d":"C:\\Program Files (x86)\\Mozilla Firefox\\browser\\features\\webcompat@mozilla.org.xpi","st":1497315741341}},"app-global":{"{972ce4c6-7e08-4474-a285-3208198ce6fd}":{"d":"C:\\Program Files (x86)\\Mozilla Firefox\\browser\\extensions\\{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","st":1497315741403}}} 1500216209963 addons.xpi-utils DEBUG Opening XPI database C:\Users\SHRUTI~1.SHA\AppData\Local\Temp\anonymous8401265547481014132webdriver-profile\extensions.json 1500216209966 addons.xpi-utils DEBUG New add-on fxdriver@googlecode.com installed in app-profile *** Blocklist::_loadBlocklistFromFile: blocklist is disabled 1500216209987 addons.xpi WARN Add-on fxdriver@googlecode.com is not correctly signed. 1500216209987 addons.xpi WARN Add-on fxdriver@googlecode.com is not correctly signed. 1500216209990 DeferredSave.extensions.json DEBUG Save changes 1500216209990 addons.xpi-utils DEBUG New add-on aushelper@mozilla.org installed in app-system-defaults 1500216209995 DeferredSave.extensions.json DEBUG Starting timer 1500216209997 DeferredSave.extensions.json DEBUG Save changes 1500216209997 addons.xpi-utils DEBUG New add-on e10srollout@mozilla.org installed in app-system-defaults 1500216210003 DeferredSave.extensions.json DEBUG Save changes 1500216210004 addons.xpi-utils DEBUG New add-on firefox@getpocket.com installed in app-system-defaults 1500216210010 DeferredSave.extensions.json DEBUG Save changes 1500216210010 addons.xpi-utils DEBUG New add-on webcompat@mozilla.org installed in app-system-defaults 1500216210015 DeferredSave.extensions.json DEBUG Save changes 1500216210015 addons.xpi-utils DEBUG New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} installed in app-global 1500216210021 DeferredSave.extensions.json DEBUG Save changes 1500216210022 addons.manager DEBUG Registering startup change 'installed' for fxdriver@googlecode.com 1500216210022 addons.xpi-utils DEBUG Make addon app-profile:fxdriver@googlecode.com visible 1500216210022 DeferredSave.extensions.json DEBUG Save changes 1500216210022 addons.manager DEBUG Registering startup change 'installed' for aushelper@mozilla.org 1500216210028 addons.xpi DEBUG Loading bootstrap scope from C:\Program Files (x86)\Mozilla Firefox\browser\features\aushelper@mozilla.org.xpi 1500216210034 addons.xpi DEBUG Calling bootstrap method install on aushelper@mozilla.org version 2.0 1500216210034 addons.xpi-utils DEBUG Make addon app-system-defaults:aushelper@mozilla.org visible 1500216210034 DeferredSave.extensions.json DEBUG Save changes 1500216210035 addons.manager DEBUG Registering startup change 'installed' for e10srollout@mozilla.org 1500216210035 addons.xpi DEBUG Loading bootstrap scope from C:\Program Files (x86)\Mozilla Firefox\browser\features\e10srollout@mozilla.org.xpi 1500216210039 addons.xpi DEBUG Calling bootstrap method install on e10srollout@mozilla.org version 1.14 1500216210041 addons.xpi-utils DEBUG Make addon app-system-defaults:e10srollout@mozilla.org visible 1500216210042 DeferredSave.extensions.json DEBUG Save changes 1500216210042 addons.manager DEBUG Registering startup change 'installed' for firefox@getpocket.com 1500216210043 addons.xpi DEBUG Loading bootstrap scope from C:\Program Files (x86)\Mozilla Firefox\browser\features\firefox@getpocket.com.xpi 1500216210049 addons.xpi DEBUG Calling bootstrap method install on firefox@getpocket.com version 1.0.5 1500216210049 addons.xpi-utils DEBUG Make addon app-system-defaults:firefox@getpocket.com visible 1500216210049 DeferredSave.extensions.json DEBUG Save changes 1500216210049 addons.manager DEBUG Registering startup change 'installed' for webcompat@mozilla.org 1500216210050 addons.xpi DEBUG Loading bootstrap scope from C:\Program Files (x86)\Mozilla Firefox\browser\features\webcompat@mozilla.org.xpi 1500216210052 addons.xpi DEBUG Calling bootstrap method install on webcompat@mozilla.org version 1.0 1500216210052 addons.xpi-utils DEBUG Make addon app-system-defaults:webcompat@mozilla.org visible 1500216210053 DeferredSave.extensions.json DEBUG Save changes 1500216210053 addons.xpi-utils DEBUG Make addon app-global:{972ce4c6-7e08-4474-a285-3208198ce6fd} visible 1500216210054 DeferredSave.extensions.json DEBUG Save changes 1500216210054 addons.xpi DEBUG Updating XPIState for {"id":"fxdriver@googlecode.com","syncGUID":"{81dc3a1a-a3d7-4ba2-b499-c73f95b2f3d7}","location":"app-profile","version":"3.4.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":null,"defaultLocale":{"name":"Firefox WebDriver","description":"WebDriver implementation for Firefox","creator":"Simon Stewart","homepageURL":null},"visible":true,"active":false,"userDisabled":false,"appDisabled":true,"descriptor":"C:\\Users\\SHRUTI~1.SHA\\AppData\\Local\\Temp\\anonymous8401265547481014132webdriver-profile\\extensions\\fxdriver@googlecode.com","installDate":1500216209322,"updateDate":1500216209322,"applyBackgroundUpdates":1,"bootstrap":false,"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} 1500216210054 addons.xpi DEBUG Updating XPIState for {"id":"aushelper@mozilla.org","syncGUID":"{9eb93cde-d89b-4372-9c04-9b9824b2e201}","location":"app-system-defaults","version":"2.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":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,"descriptor":"C:\\Program Files (x86)\\Mozilla Firefox\\browser\\features\\aushelper@mozilla.org.xpi","installDate":1497315741401,"updateDate":1497315741401,"applyBackgroundUpdates":1,"bootstrap":true,"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":"53.0.3","maxVersion":"53.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true,"dependencies":[],"hasEmbeddedWebExtension":false,"mpcOptedOut":false,"userPermissions":null} 1500216210054 addons.xpi DEBUG getModTime: Recursive scan of aushelper@mozilla.org 1500216210055 addons.xpi DEBUG Updating XPIState for {"id":"e10srollout@mozilla.org","syncGUID":"{38767723-e3e2-4455-a3a1-26f5a22b8b96}","location":"app-system-defaults","version":"1.14","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":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,"descriptor":"C:\\Program Files (x86)\\Mozilla Firefox\\browser\\features\\e10srollout@mozilla.org.xpi","installDate":1497315741398,"updateDate":1497315741398,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":8478,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"53.0.3","maxVersion":"53.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true,"dependencies":[],"hasEmbeddedWebExtension":false,"mpcOptedOut":false,"userPermissions":null} 1500216210055 addons.xpi DEBUG getModTime: Recursive scan of e10srollout@mozilla.org 1500216210056 addons.xpi DEBUG Updating XPIState for {"id":"firefox@getpocket.com","syncGUID":"{b52a7dc4-0679-4bb6-ad9a-dc7d9e888d1a}","location":"app-system-defaults","version":"1.0.5","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":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,"descriptor":"C:\\Program Files (x86)\\Mozilla Firefox\\browser\\features\\firefox@getpocket.com.xpi","installDate":1497315741395,"updateDate":1497315741395,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":913565,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"53.0.3","maxVersion":"53.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true,"dependencies":[],"hasEmbeddedWebExtension":false,"mpcOptedOut":false,"userPermissions":null} 1500216210056 addons.xpi DEBUG getModTime: Recursive scan of firefox@getpocket.com 1500216210056 addons.xpi DEBUG Updating XPIState for {"id":"webcompat@mozilla.org","syncGUID":"{cdcab7ed-d2bf-4f01-a65d-880dd80acd89}","location":"app-system-defaults","version":"1.0","type":"extension","internalName":null,"updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":null,"icon64URL":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,"descriptor":"C:\\Program Files (x86)\\Mozilla Firefox\\browser\\features\\webcompat@mozilla.org.xpi","installDate":1497315741341,"updateDate":1497315741341,"applyBackgroundUpdates":1,"bootstrap":true,"skinnable":false,"size":1456,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"53.0.3","maxVersion":"53.*"}],"targetPlatforms":[],"multiprocessCompatible":true,"seen":true,"dependencies":[],"hasEmbeddedWebExtension":false,"mpcOptedOut":false,"userPermissions":null} 1500216210056 addons.xpi DEBUG getModTime: Recursive scan of webcompat@mozilla.org 1500216210057 addons.xpi DEBUG Updating XPIState for {"id":"{972ce4c6-7e08-4474-a285-3208198ce6fd}","syncGUID":"{06e009a2-0cf0-4d29-8c19-babac002f19d}","location":"app-global","version":"53.0.3","type":"theme","internalName":"classic/1.0","updateURL":null,"updateKey":null,"optionsURL":null,"optionsType":null,"aboutURL":null,"icons":{},"iconURL":"chrome://browser/content/default-theme-icon.svg","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":"C:\\Program Files (x86)\\Mozilla Firefox\\browser\\extensions\\{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi","installDate":1497315741403,"updateDate":1497315741403,"applyBackgroundUpdates":1,"skinnable":true,"size":8207,"sourceURI":null,"releaseNotesURI":null,"softDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":true,"locales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"53.0.3","maxVersion":"53.0.3"}],"targetPlatforms":[],"seen":true,"dependencies":[],"hasEmbeddedWebExtension":false,"userPermissions":null} 1500216210058 addons.xpi DEBUG getModTime: Recursive scan of {972ce4c6-7e08-4474-a285-3208198ce6fd} 1500216210059 DeferredSave.extensions.json DEBUG Save changes 1500216210059 addons.xpi DEBUG Updating database with changes to installed add-ons 1500216210059 addons.xpi-utils DEBUG Updating add-on states 1500216210063 addons.xpi-utils DEBUG Writing add-ons list 1500216210077 addons.xpi DEBUG Registering manifest for C:\Program Files (x86)\Mozilla Firefox\browser\features\aushelper@mozilla.org.xpi 1500216210079 addons.xpi DEBUG Calling bootstrap method startup on aushelper@mozilla.org version 2.0 1500216210081 addons.xpi DEBUG Registering manifest for C:\Program Files (x86)\Mozilla Firefox\browser\features\e10srollout@mozilla.org.xpi 1500216210082 addons.xpi DEBUG Calling bootstrap method startup on e10srollout@mozilla.org version 1.14 1500216210083 addons.xpi DEBUG Registering manifest for C:\Program Files (x86)\Mozilla Firefox\browser\features\firefox@getpocket.com.xpi 1500216210084 addons.xpi DEBUG Calling bootstrap method startup on firefox@getpocket.com version 1.0.5 1500216210085 addons.xpi DEBUG Registering manifest for C:\Program Files (x86)\Mozilla Firefox\browser\features\webcompat@mozilla.org.xpi 1500216210086 addons.xpi DEBUG Calling bootstrap method startup on webcompat@mozilla.org version 1.0 1500216210088 addons.manager DEBUG Registering shutdown blocker for XPIProvider 1500216210089 addons.manager DEBUG Provider finished startup: XPIProvider 1500216210089 addons.manager DEBUG Starting provider: LightweightThemeManager 1500216210089 addons.manager DEBUG Registering shutdown blocker for LightweightThemeManager 1500216210090 addons.manager DEBUG Provider finished startup: LightweightThemeManager 1500216210090 addons.manager DEBUG Starting provider: GMPProvider 1500216210096 addons.manager DEBUG Registering shutdown blocker for GMPProvider 1500216210096 addons.manager DEBUG Provider finished startup: GMPProvider 1500216210096 addons.manager DEBUG Starting provider: PluginProvider 1500216210097 addons.manager DEBUG Registering shutdown blocker for PluginProvider 1500216210097 addons.manager DEBUG Provider finished startup: PluginProvider 1500216210097 addons.manager DEBUG Completed startup sequence 1500216210659 DeferredSave.extensions.json DEBUG Starting write 1500216210668 addons.manager DEBUG Starting provider: 1500216210668 addons.manager DEBUG Registering shutdown blocker for 1500216210668 addons.manager DEBUG Provider finished startup: 1500216210943 addons.repository DEBUG No addons.json found. 1500216210943 DeferredSave.addons.json DEBUG Save changes 1500216210949 DeferredSave.addons.json DEBUG Starting timer 1500216211017 addons.manager DEBUG Starting provider: PreviousExperimentProvider 1500216211017 addons.manager DEBUG Registering shutdown blocker for PreviousExperimentProvider 1500216211017 addons.manager DEBUG Provider finished startup: PreviousExperimentProvider 1500216211019 DeferredSave.extensions.json DEBUG Write succeeded 1500216211020 addons.xpi-utils DEBUG XPI Database saved, setting schema version preference to 19 1500216211020 DeferredSave.addons.json DEBUG Starting write 1500216211076 DeferredSave.addons.json DEBUG Write succeeded Crash Annotation GraphicsCriticalError: |[C0][GFX1-]: PossiblyBrokenSurfaceSharing_UnexpectedAMDGPU (t=3.09331) [GFX1-]: PossiblyBrokenSurfaceSharing_UnexpectedAMDGPU [GPU 21172] WARNING: pipe error: 109: file c:/builds/moz2_slave/m-rel-w32-00000000000000000000/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346 =============================================== suite Total tests run: 3, Failures: 0, Skips: 3 Configuration Failures: 1, Skips: 0 ===============================================
krmahadevan commented 7 years ago

@NewUser310 - Ok, this is not going anywhere I guess. Can you please share screenshots of what you are doing ? The error is still the same. It is related to WebDriver and not TestNG. Your error says its having problems dealing with Firefox browser spawning. I guess it should be evident for you as well looking at your error logs.

krmahadevan commented 7 years ago

ping @NewUser310 . Did you manage to get this resolved ?

NewUser310 commented 7 years ago

Yes. thanks a lot for the prompt response.

krmahadevan commented 7 years ago

Awesome. Can you please help close off the issue if it works fine ?

Thanks & Regards

Krishnan Mahadevan

"All the desirable things in life are either illegal, expensive, fattening or in love with someone else!"

My Scribblings @ http://wakened-cognition.blogspot.com/

My Technical Scribbings @ http://rationaleemotions.wordpress.com/

From: NewUser310 notifications@github.com Reply-To: cbeust/testng reply@reply.github.com Date: Tuesday, July 18, 2017 at 7:52 AM To: cbeust/testng testng@noreply.github.com Cc: Krishnan Mahadevan krishnan.mahadevan1978@gmail.com, Comment comment@noreply.github.com Subject: Re: [cbeust/testng] Error "DataProvider must return either Object[][] or Iterator<Object>[], not class [[Ljava.lang.Object;" (#1476)

Yes. thanks a lot for the prompt response.

— You are receiving this because you commented. Reply to this email directly, view it on GitHub, or mute the thread.