Package org.jboss.arquillian.graphene.spi.configuration

Examples of org.jboss.arquillian.graphene.spi.configuration.GrapheneConfiguration.configure()


    private Event<GrapheneUnconfigured> unconfiguredEvent;

    // graphene has to be configured before the drone factory creates the webdriver
    public void configureGraphene(@Observes(precedence=100) BeforeClass event, ArquillianDescriptor descriptor) {
        GrapheneConfiguration c = new GrapheneConfiguration();
        c.configure(descriptor, Default.class).validate();
        this.configuration.set(c);
        this.configuredEvent.fire(new GrapheneConfigured(c));
    }

    // configuration has to be dropped after the drone factory destroy the webdriver
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.