class Playwright::AndroidWebView
`AndroidWebView` represents a WebView open on the `AndroidDevice`. WebView is usually obtained using [`method: AndroidDevice.webView`].
Public Instance Methods
page()
click to toggle source
Connects to the WebView and returns a regular Playwright
`Page` to interact with.
# File lib/playwright_api/android_web_view.rb, line 7 def page raise NotImplementedError.new('page is not implemented yet.') end
pid()
click to toggle source
WebView process PID.
# File lib/playwright_api/android_web_view.rb, line 12 def pid raise NotImplementedError.new('pid is not implemented yet.') end
pkg()
click to toggle source
WebView package identifier.
# File lib/playwright_api/android_web_view.rb, line 17 def pkg raise NotImplementedError.new('pkg is not implemented yet.') end