com.capgemini.mrchecker.selenium.core.BasePageAutoRegistration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mrchecker-selenium-module Show documentation
Show all versions of mrchecker-selenium-module Show documentation
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
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();
}
}