Package play.test
Class WithBrowser
java.lang.Object
play.test.WithServer
play.test.WithBrowser
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
FieldsFields inherited from class play.test.WithServer
app, port, testServer -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidprotected TestBrowserprovideBrowser(int port) Override this if you want to use a different browservoidMethods inherited from class play.test.WithServer
provideApplication, providePort, startServer, stopServer
-
Field Details
-
browser
-
-
Constructor Details
-
WithBrowser
public WithBrowser()
-
-
Method Details
-
provideBrowser
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()
-