Need assistance with testng/arquillian/drone/graphene and bypassing arquillian.xml

356 Views Asked by At

Let me setup my test environment. We run our tests on VM's from the command line. Running the testng.xml from the commandline. Can't pass parameters through that. We have a test.properties with all of our runtime parameters and through that, we set the browser type, version, homepage URL, etc. We are using pageobjects currently.

We have a functionalTest.java that all pageTests inherit from that parses the test.properties and sets up all the parameters for that particular run of 600 tests. I would like to convert to using Arquillian/Graphene/Drone, but I am struggling with getting it setup in my environment.

I can't use arquillian.xml since each run will be different, and there is no way for me to attach a different file for each run. Thus I need to I believe set system properties in my functionalTest.java for everything. I've tried so far with:

// File :FunctionalTest.java package tests;

import org.jboss.arquillian.drone.api.annotation.Drone;
import org.jboss.arquillian.testng.Arquillian;
import org.openqa.selenium.WebDriver;
import org.testng.annotations.BeforeSuite;

import framework.Log;
import framework.Utility;

/**
 * FunctionalTest class contains the setup methods and these will run before or after the suite or test methods.
 *
 **/
public class FunctionalTest extends Arquillian
{
    @Drone
    public WebDriver wDriver;

    public static Properties pTestProperties = new Properties();
    public static String sBrowser = "";
    public static String sBrowserVersion = "";
    public static String sEnvironment = "";

    @BeforeSuite
    public static void StartSuite()
    {
        pTestProperties = Utility.ReadPropertiesFile("test.properties", pTestProperties);
        pTestProperties = Utility.ReadPropertiesFile("testEnvironment.properties", pTestProperties);
        sEnvironment = (System.getenv("ENVIRONMENT_NAME") != null) ? System.getenv("ENVIRONMENT_NAME") : pTestProperties.getProperty("environment");
        sBrowser = (Utility.GetTestParameterString("browser") != "") ? Utility.GetTestParameterString("browser") : pTestProperties.getProperty("browser");
        sBrowserVersion = (Utility.GetTestParameterString("browserVersion") != "") ? Utility.GetTestParameterString("browserVersion") : pTestProperties.getProperty("browserVersion");
        System.setProperty("webdriver.browser", sBrowser);
        System.setProperty("webdriver.chrome.driver", "\\drivers\\chromedriver_2.38_Win32.exe");
    }
}

// File :HomePageTest.java package tests;

import org.jboss.arquillian.container.test.api.RunAsClient;
import org.jboss.arquillian.testng.Arquillian;
import org.testng.Assert;
import org.testng.annotations.Test;

import framework.Log;
import pageobjects.HomePage;

@RunAsClient
public class HomePageTest extends FunctionalTest
{
    @Test(dataProvider = Arquillian.ARQUILLIAN_DATA_PROVIDER)
    public void OpenUrlTest()
    {
        String sUrl = "";
        HomePage oHomePage = null;
        sUrl = pTestProperties.getProperty("testUrl." + sEnvironment + "." + sTestCaseName) != null ? pTestProperties.getProperty("testUrl." + sEnvironment + "." + sTestCaseName) : pTestProperties.getProperty("testUrl." + sEnvironment + "." + sCountry);
        System.setProperty("webdriver.remoteAddress", sUrl);
        oHomePage = new HomePage(wDriver);
        wDriver.get(sUrl);
        Assert.assertTrue(oHomePage.IsLoaded());
        Log.Info("Passed");
    }

}

// File :HomePage.java package pageobjects;

import java.util.concurrent.TimeUnit;

import org.jboss.arquillian.graphene.Graphene;
import org.openqa.selenium.StaleElementReferenceException;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.support.FindBy;

import framework.Log;

public class HomePage
{
    private final WebDriver driver;

    public HomePage(WebDriver driver)
    {
        this.driver = driver;
    }

    @FindBy(id = "hero-carousel")
    private WebElement homepageCarousel;

    public boolean IsLoaded()
    {
        Log.Info("Entering method HomePage::IsLoaded()");
        boolean bFlag = false;
        try
        {
            Graphene.waitGui().withMessage("Carousel not shown on HomePage").ignoring(StaleElementReferenceException.class)
                    .pollingEvery(1, TimeUnit.SECONDS).until().element(homepageCarousel).is().visible();
            bFlag = true;
        }
        catch (Exception e)
        {
            Log.Info("Execption thrown: " + e.getMessage());
            bFlag = false;
        }
        Log.Info("Exiting the method HomePage::IsLoaded() with return value: '" + bFlag + "'");
        return bFlag;
    }
}

Running OpenUrlTest produces a "missing arquillian.xml" error. If I put in an arquillian.xml, nothing I do overrides the browsertype. Any assistance?

Greg

1

There are 1 best solutions below

4
On

You can use System properties in arquillian.xml.

For ex:

<extension qualifier="webdriver">
    <property name="browser">${browser}</property>
</extension>

Through command line, you can pass -Dbrowser=chrome

Or,

You can ignore arquillian xml property and set arquillian property at run time

System.setProperty("arq.extension.webdriver.browser", "chrome");