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

org.fluentlenium.adapter.IsolatedTest Maven / Gradle / Ivy

There is a newer version: 5.0.4
Show newest version
package org.fluentlenium.adapter;

import org.openqa.selenium.WebDriver;

/**
 * Instead of extending FluentTest, you can instantiate this class directly.
 * 

* If you want to test concurrency, or if you need for any reason to not use JUnit nor TestNG, you may use this class. */ public class IsolatedTest extends FluentAdapter { public IsolatedTest() { initFluent(getDefaultDriver()).withDefaultUrl(getDefaultBaseUrl()); init(); } public IsolatedTest(WebDriver webDriver) { initFluent(webDriver).withDefaultUrl(getDefaultBaseUrl()); init(); } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy