Package org.seleniumhq.selenium.fluent.monitors

Examples of org.seleniumhq.selenium.fluent.monitors.CompositeMonitor


*/
    public class BasePage extends FluentWebDriver {

        public BasePage(FirefoxDriver delegate) {
            super(delegate,
                    new CompositeMonitor(WholeSuiteListener.codahaleMetricsMonitor,
                            new HighlightOnError(delegate),
                            new ScreenShotOnError.WithUnitTestFrameWorkContext(delegate, BasePage.class, "test-classes", "surefire-reports")));
        }
View Full Code Here

TOP

Related Classes of org.seleniumhq.selenium.fluent.monitors.CompositeMonitor

Copyright © 2018 www.massapicom. 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.