All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.capgemini.mrchecker.selenium.core.BasePageAutoRegistration Maven / Gradle / Ivy

Go to download

MrChecker Test Framework Selenium supports: * Malleable resolution * Remote Web Design * Mobile browsers * Support for many browsers * Internet Explorer, Edge * Chrome, Firefox * ChromeHeadless * Safari * User friendly actions * elementCheckBox * elementDropdown, etc. * Ubiquise test execution * locally * against Selenium Grid through Jenkins * Page Object Model architecture * Selenium WebDriver with Java * Update Observers

There is a newer version: 2023.10.10
Show newest version
package com.capgemini.mrchecker.selenium.core;

/**
 * The instances of BasePageAutoRegistration class are added to the test execution observer automatically in
 * constructor.
 * Although this operation is unsafe, it's been added to support migration from MrChecker Junit4 to Junit5.
 */
@Deprecated
abstract public class BasePageAutoRegistration extends BasePage {

    public BasePageAutoRegistration() {
        addToTestExecutionObserver();
    }

    public BasePageAutoRegistration(BasePageAutoRegistration parent) {
        super(parent);
        addToTestExecutionObserver();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy