method

register_playwright

Importance_0
v7.1.3.2 - Show latest stable - 0 notes - Class: Driver
register_playwright(app) private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File actionpack/lib/action_dispatch/system_testing/driver.rb, line 67
        def register_playwright(app)
          screen = { width: @screen_size[0], height: @screen_size[1] } if @screen_size
          options = {
            screen: screen,
            viewport: screen,
            **@options
          }.compact

          Capybara::Playwright::Driver.new(app, **options)
        end
Register or log in to add new notes.