(x: number, y: number, includeUserAgentShadowDOM: boolean)
| 2038 | } |
| 2039 | |
| 2040 | async nodeForLocation(x: number, y: number, includeUserAgentShadowDOM: boolean): Promise<DOMNode|null> { |
| 2041 | const response = await this.agent.invoke_getNodeForLocation({x, y, includeUserAgentShadowDOM}); |
| 2042 | if (response.getError() || !response.nodeId) { |
| 2043 | return null; |
| 2044 | } |
| 2045 | return this.nodeForId(response.nodeId); |
| 2046 | } |
| 2047 | |
| 2048 | async getContainerForNode( |
| 2049 | nodeId: Protocol.DOM.NodeId, containerName?: string, physicalAxes?: Protocol.DOM.PhysicalAxes, |
no test coverage detected