blob: a486f8f552823ad996d48b07a79c351cdd29e139 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
package webui;
import java.net.URL;
import com.microsoft.playwright.BrowserContext;
import io.quarkiverse.playwright.InjectPlaywright;
import io.quarkiverse.playwright.WithPlaywright;
import io.quarkus.test.common.http.TestHTTPResource;
@WithPlaywright
public class ApplicationTest {
@InjectPlaywright
BrowserContext context;
@TestHTTPResource("/")
URL indexLocation;
}
|