Package 

Interface RenderFrameTarget


  • 
    public interface RenderFrameTarget
    
                        

    Represents the available domain APIs in RenderFrame targets

    • Method Detail

      • getAudits

         abstract AuditsDomain getAudits()

        Audits domain allows investigation of page violations and possible improvements.

      • getBrowser

         abstract BrowserDomain getBrowser()

        The Browser domain defines methods and events for browser managing.

      • getDom

         abstract DOMDomain getDom()

        This domain exposes DOM read/write operations. Each DOM Node is represented with its mirror object that has an id. This id can be used to get additional information on the Node, resolve it into the JavaScript object wrapper, etc. It is important that client receives DOM events only for the nodes that are known to the client. Backend keeps track of the nodes that were sent to the client and never sends the same node twice. It is client's responsibility to collect information about the nodes that were sent to the client.<p>Note that iframe owner elements will return corresponding document elements as their child nodes.</p>

      • getIo

         abstract IODomain getIo()

        Input/Output operations for streams produced by DevTools.

      • getNetwork

         abstract NetworkDomain getNetwork()

        Network domain allows tracking network activities of the page. It exposes information about http, file, data and other requests and responses, their headers, bodies, timing, etc.

      • getOverlay

         abstract OverlayDomain getOverlay()

        This domain provides various functionality related to drawing atop the inspected page.

      • getPage

         abstract PageDomain getPage()

        Actions and events related to the inspected page belong to the page domain.

      • getTarget

         abstract TargetDomain getTarget()

        Supports additional targets discovery and allows to attach to them.

      • getFetch

         abstract FetchDomain getFetch()

        A domain for letting clients substitute browser's network layer with client code.

      • getWebAuthn

         abstract WebAuthnDomain getWebAuthn()

        This domain allows configuring virtual authenticators to test the WebAuthn API.

      • getRuntime

         abstract RuntimeDomain getRuntime()

        Runtime domain exposes JavaScript runtime by means of remote evaluation and mirror objects. Evaluation results are returned as mirror object that expose object type, string representation and unique identifier that can be used for further object reference. Original objects are maintained in memory unless they are either explicitly released or are released along with the other objects in their object group.