Future<int> requestNode(String objectId) async { var resp = await sendCommand('DOM.requestNode', params: {'objectId': objectId}); return resp.result!['nodeId'] as int; }