简体   繁体   中英

Parallel execution does not work in Selenium Page object Model

I'm doing automation with Selenium - Page object Model & TestNG & Java. I have 2 testcases in 2 class files and i want to run all my tests in parallel参考图片 I passed driver and test object to all my pages. When running my testng.xml with parallel="classes" two browser windows opened and only in one window, tests is running. The other window is closed. Eclipse showed me Null pointer exception. Answer: Later i understood that this is about usage of static in ExtentReport initialization. I corrected my code in reporter class.

Test Class-1:

public class CreateXCase extends SeleniumBase
{
    @BeforeTest(alwaysRun=true )
    public void setTestDetails()
    {
        author = System.getProperty("user.name"); 
        testcaseName="Verify that X case is successfully created";
        testcaseDec = "Create X Case";
        category="Regression";
    }


    @Test(priority=2,groups = {"Regression"})
    public  void createCaseWithNewParticipants() throws Exception
    {
        new LoginPage(driver, test).login().quickNavigation_CASE()
        .navigateToCreateCase().enterApplicantInformation()
        .navigateToCaseSection().createCase();
    }
}

Test Class-2:

public class CreateYcase extends SeleniumBase
{
    @BeforeTest(alwaysRun=true )
    public void setTestDetails()
    {
        author = System.getProperty("user.name"); 
        testcaseName="Verify that Y case is successfully created";
        testcaseDec = "Create Y Case";
        category="Regression";
    }

     @Test(priority=1,groups = {"Regression"})
     public  void createCaseWithNewParticipants() throws Exception
     {
        new LoginPage(driver,test).login().quickNavigation_CASE()
        .navigateToCreateCase().enterApplicantInformation()
        .navigateToCaseSection().createCase();
    }

SeleniumBase.java:

public class SeleniumBase extends Reporter implements Browser, Element 
{

    public static WebDriverWait wait;
    @BeforeMethod(alwaysRun=true )
    public void configureAndLaunch() throws IOException 
    {           
        driver = startApp(ReadPropertyFile.get("Browser"), ReadPropertyFile.get("URL"));
    }

    @Override
    @AfterMethod (alwaysRun=true )
    public void closeBrowser()
    {
        driver.quit();
    }


@Override
    public RemoteWebDriver startApp(String browser, String url) 
    {
        try 
        {
            if (browser.equalsIgnoreCase("chrome")) 
            {
                System.setProperty("webdriver.chrome.driver", "./drivers/chromedriver.exe");
                driver = new ChromeDriver();

            } 
            else if (browser.equalsIgnoreCase("firefox")) 
            {
                System.setProperty("webdriver.gecko.driver", "./drivers/geckodriver.exe");
                driver = new FirefoxDriver();

            } 
            else if (browser.equalsIgnoreCase("ie")) 
            {
                System.setProperty("webdriver.ie.driver", "./drivers/IEDriverServer.exe");
                driver = new InternetExplorerDriver();

            }
            driver.get(url);

            driver.manage().timeouts().implicitlyWait(30, TimeUnit.SECONDS);
            driver.manage().window().maximize();
            return driver;

        } 
        catch (Exception e) 
        {
            int a = e.toString().indexOf("Exception:");
            String str = e.toString().substring(0, a + 30);
            System.out.println(str + "Exception captured");

            System.err.println("The Browser Could not be Launched. Hence Failed");

        } 
        finally 
        {
            takeSnap();

        }
        return null;
    } 

Reporter.java:

public abstract class Reporter {

    public  RemoteWebDriver driver;

    public  ExtentHtmlReporter reporter;
    public  static ExtentReports extent;
    public  ExtentTest test;
    public String testcaseName, testcaseDec, author ; 
    public String category="";
    public static  String excelFileName;
    public static String extentreportpath;

    @BeforeSuite (alwaysRun=true )
    public void startReport(ITestContext c) throws IOException 
    {
        String reportName=this.getClass().getName().substring(29, 33).toUpperCase() +" Screen Test Report";
        String screenName=this.getClass().getName().substring(29, 33).toUpperCase() +" Tests";
        String rptName="h5{font-size: 0px;}h5::after{content:\'"+screenName+"\';font-size: 1.64rem; line-height: 110%;margin: 0.82rem 0 0.656rem 0;}";
        String suiteName = c.getCurrentXmlTest().getSuite().getName();
        if (suiteName.contains("Default suite")||suiteName.contains("Failed suite"))
        suiteName ="";
        extentreportpath="./reports/"+suiteName+"Report.html";
        reporter = new ExtentHtmlReporter(extentreportpath);
        reporter.setAppendExisting(true);       
        extent   = new ExtentReports(); 
        extent.attachReporter(reporter);
        reporter.loadXMLConfig(new File("./Resources/extent-config.xml"));
        reporter.config().setTheme(Theme.DARK);
        reporter.config().setTestViewChartLocation(ChartLocation.BOTTOM);
        reporter.config().setReportName(reportName);
        reporter.config().setCSS(rptName);
        }

    @BeforeClass(alwaysRun=true )
    public ExtentTest report()  
    {
        test = extent.createTest(testcaseName, testcaseDec);
        test.assignAuthor(author);
        return test;  
    }



    public abstract long takeSnap();

    public void reportStep(String desc,String status,boolean bSnap)
    {
        MediaEntityModelProvider img=null;
        if(bSnap && !status.equalsIgnoreCase("INFO"))
        {
            long snapNumber=100000L;
            snapNumber=takeSnap();
            try
            {
                img=MediaEntityBuilder.createScreenCaptureFromPath("./../reports/images/"+snapNumber+".jpg").build();
            }
            catch(IOException e)
            {

            }
        }
        if(status.equalsIgnoreCase("pass"))
        {
            //test.pass(desc,img);
            test.log(Status.PASS, desc, img);

        }
        else if(status.equalsIgnoreCase("fail"))
        {

            //test.fail(desc,img);

            test.log(Status.FAIL, desc, img);
        }
        else if(status.equalsIgnoreCase("INFO"))
        {
            //test.pass(desc);
            test.log(Status.INFO, desc,img);
        }
    }

    public void reportStep(String desc,String status)
    {

        reportStep(desc,status,true);
    }


    @AfterSuite (alwaysRun=true )
    public void stopReport() throws Exception 
    {
        extent.flush();
    }
}

Making the ExtentReport variable 'extent' as static solved my issue. Eg: public static ExtentReports extent; I modified the code in my question also.

Since i have only one @Test in a class, parallel="methods" is of no use in my case.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM