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

daveayan.BaseTest Maven / Gradle / Ivy

There is a newer version: 2.5
Show newest version
package daveayan;

import java.io.File;

import org.junit.After;

import daveayan.gherkinsalad.components.html.BaseBrowserElement;

public class BaseTest extends BaseBrowserElement {

	public void goto_test_page(String relative_url) {
		File f = new File(".");
		String path = "file://localhost/" + f.getAbsolutePath() + "/src/test/resources/" + relative_url;
		goto_url(path);
	}
	
	@After
	public void close_browser() {
		super.close_browser();
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy