
com.qantium.uisteps.allure.browser.factory.BrowserFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of uisteps-allure Show documentation
Show all versions of uisteps-allure Show documentation
Allure extension for uisteps-core
package com.qantium.uisteps.allure.browser.factory;
import com.qantium.uisteps.allure.browser.Browser;
import org.openqa.selenium.WebDriver;
/**
* Created by Anton Solyankin
*/
public class BrowserFactory extends com.qantium.uisteps.core.browser.factory.BrowserFactory {
@Override
public com.qantium.uisteps.core.browser.Browser getBrowser(WebDriver driver) {
Browser browser = new Browser();
browser.setDriver(driver);
return browser;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy