Target.activateTargetActivates (focuses) the target.
| Name | Type | Description |
|---|---|---|
targetId | TargetID |
{
"id": 1,
"method": "Target.activateTarget",
"params": {
"targetId": "TARGET_ID_HERE"
}
}
{
"id": 1,
"result": {}
}
const result = await send('Target.activateTarget', {"targetId": "TARGET_ID_HERE"});
console.log(result);