Class: Playwright::AndroidWebView
- Inherits:
-
PlaywrightApi
- Object
- PlaywrightApi
- Playwright::AndroidWebView
- Defined in:
- lib/playwright_api/android_web_view.rb
Overview
‘AndroidWebView` represents a WebView open on the `AndroidDevice`. WebView is usually obtained using [`method: AndroidDevice.webView`].
Instance Method Summary collapse
-
#page ⇒ Object
Connects to the WebView and returns a regular Playwright ‘Page` to interact with.
-
#pid ⇒ Object
WebView process PID.
-
#pkg ⇒ Object
WebView package identifier.
Methods inherited from PlaywrightApi
Constructor Details
This class inherits a constructor from Playwright::PlaywrightApi
Instance Method Details
#page ⇒ Object
Connects to the WebView and returns a regular Playwright ‘Page` to interact with.
7 8 9 |
# File 'lib/playwright_api/android_web_view.rb', line 7 def page raise NotImplementedError.new('page is not implemented yet.') end |
#pid ⇒ Object
WebView process PID.
12 13 14 |
# File 'lib/playwright_api/android_web_view.rb', line 12 def pid raise NotImplementedError.new('pid is not implemented yet.') end |
#pkg ⇒ Object
WebView package identifier.
17 18 19 |
# File 'lib/playwright_api/android_web_view.rb', line 17 def pkg raise NotImplementedError.new('pkg is not implemented yet.') end |