PWA.openCurrentPageInAppOpens the current page in its web app identified by the manifest id, needs to be called on a page target. This function returns immediately without waiting for the app to finish loading.
| Name | Type | Description |
|---|---|---|
manifestId | string |
{
"id": 1,
"method": "PWA.openCurrentPageInApp",
"params": {
"manifestId": "manifestId-value"
}
}
{
"id": 1,
"result": {}
}
const result = await send('PWA.openCurrentPageInApp', {"manifestId": "manifestId-value"});
console.log(result);