Annotation Type WithPlaywright


@QuarkusTestResource(QuarkusPlaywrightManager.class) @Retention(RUNTIME) @Target(TYPE) public @interface WithPlaywright
  • Nested Class Summary

    Nested Classes
    Modifier and Type
    Class
    Description
    static enum 
     
  • Optional Element Summary

    Optional Elements
    Modifier and Type
    Optional Element
    Description
    Args for use to launch the browser
    Browser to use
    Browser distribution channel.
    boolean
    Enable Chromium sandboxing.
    boolean
    Enable Playwright Debug Inspector
    boolean
    Whether to run browser in headless mode.
    double
    Slows down Playwright operations by the specified amount of milliseconds.
    boolean
    Enable playwright logs
  • Element Details

    • browser

      Browser to use
      Default:
      CHROMIUM
    • verbose

      boolean verbose
      Enable playwright logs
      Default:
      false
    • debug

      boolean debug
      Enable Playwright Debug Inspector
      Default:
      false
    • channel

      String channel
      Browser distribution channel. Supported values are "chrome", "chrome-beta", "chrome-dev", "chrome-canary", "msedge", "msedge-beta", "msedge-dev", "msedge-canary". Read more about using Google Chrome and Microsoft Edge.
      Default:
      ""
    • chromiumSandbox

      boolean chromiumSandbox
      Enable Chromium sandboxing. Defaults to false.
      Default:
      false
    • headless

      boolean headless
      Whether to run browser in headless mode. More details for Chromium and Firefox. Defaults to true unless the devtools option is true.
      Default:
      true
    • slowMo

      double slowMo
      Slows down Playwright operations by the specified amount of milliseconds. Useful so that you can see what is going on.
      Default:
      0.0
    • args

      String[] args
      Args for use to launch the browser
      Default:
      {"--disable-gpu"}