Package play.test
Class WithBrowser
- Object
-
- play.test.WithServer
-
- play.test.WithBrowser
-
public class WithBrowser extends WithServer
Provides a server and browser to JUnit tests. Make your test class extend this class and an application, a server and a browser will be started before each test is invoked. You can setup the fake application to use, the port and the browser to use by overriding the provideApplication, providePort and provideBrowser methods, respectively. Within a test, the running application, the TCP port and the browser are available through the app, port and browser fields, respectively.
-
-
Field Summary
Fields Modifier and Type Field Description protected TestBrowser
browser
-
Fields inherited from class play.test.WithServer
app, port, testServer
-
-
Constructor Summary
Constructors Constructor Description WithBrowser()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
createBrowser()
protected TestBrowser
provideBrowser(int port)
Override this if you want to use a different browservoid
quitBrowser()
-
Methods inherited from class play.test.WithServer
provideApplication, providePort, startServer, stopServer
-
-
-
-
Field Detail
-
browser
protected TestBrowser browser
-
-
Method Detail
-
provideBrowser
protected TestBrowser provideBrowser(int port)
Override this if you want to use a different browser- Parameters:
port
- the port to run the browser against.- Returns:
- a new test browser
-
createBrowser
public void createBrowser()
-
quitBrowser
public void quitBrowser()
-
-