class Playwright::AndroidWebView

‘AndroidWebView` represents a WebView open on the `AndroidDevice`. WebView is usually obtained using [`method: AndroidDevice.webView`].

def page

Connects to the WebView and returns a regular Playwright `Page` to interact with.
def page
  raise NotImplementedError.new('page is not implemented yet.')
end

def pid

WebView process PID.
def pid
  raise NotImplementedError.new('pid is not implemented yet.')
end

def pkg

WebView package identifier.
def pkg
  raise NotImplementedError.new('pkg is not implemented yet.')
end