📄 playwright-python/docs/api/class-androidwebview

File: class-androidwebview.md | Updated: 11/18/2025

Source: https://playwright.dev/docs/api/class-androidwebview

Skip to main content

On this page

AndroidWebView represents a WebView open on the AndroidDevice . WebView is usually obtained using androidDevice.webView() .


Methods


page

Added in: v1.9 androidWebView.page

Connects to the WebView and returns a regular Playwright Page to interact with.

Usage

await androidWebView.page();

Returns


pid

Added in: v1.9 androidWebView.pid

WebView process PID.

Usage

androidWebView.pid();

Returns


pkg

Added in: v1.9 androidWebView.pkg

WebView package identifier.

Usage

androidWebView.pkg();

Returns


Events


on('close')

Added in: v1.9 androidWebView.on('close')

Emitted when the WebView is closed.

Usage

androidWebView.on('close', data => {});