2017-01-24 15:09:23 +00:00
// Package target provides the Chrome Debugging Protocol
2017-02-12 04:59:33 +00:00
// commands, types, and events for the Target domain.
2017-01-24 15:09:23 +00:00
//
// Supports additional targets discovery and allows to attach to them.
//
// Generated by the chromedp-gen command.
package target
2017-07-09 02:05:19 +00:00
// Code generated by chromedp-gen. DO NOT EDIT.
2017-01-24 15:09:23 +00:00
import (
"context"
2017-01-26 07:28:34 +00:00
cdp "github.com/knq/chromedp/cdp"
2017-01-24 15:09:23 +00:00
)
// SetDiscoverTargetsParams controls whether to discover available targets
2017-06-30 23:55:30 +00:00
// and notify via targetCreated/targetInfoChanged/targetDestroyed events.
2017-01-24 15:09:23 +00:00
type SetDiscoverTargetsParams struct {
Discover bool ` json:"discover" ` // Whether to discover available targets.
}
// SetDiscoverTargets controls whether to discover available targets and
2017-06-30 23:55:30 +00:00
// notify via targetCreated/targetInfoChanged/targetDestroyed events.
2017-01-24 15:09:23 +00:00
//
// parameters:
// discover - Whether to discover available targets.
func SetDiscoverTargets ( discover bool ) * SetDiscoverTargetsParams {
return & SetDiscoverTargetsParams {
Discover : discover ,
}
}
2017-02-12 04:59:33 +00:00
// Do executes Target.setDiscoverTargets against the provided context and
// target handler.
func ( p * SetDiscoverTargetsParams ) Do ( ctxt context . Context , h cdp . Handler ) ( err error ) {
2017-02-14 08:41:23 +00:00
return h . Execute ( ctxt , cdp . CommandTargetSetDiscoverTargets , p , nil )
2017-01-24 15:09:23 +00:00
}
// SetAutoAttachParams controls whether to automatically attach to new
// targets which are considered to be related to this one. When turned on,
// attaches to all existing related targets as well. When turned off,
// automatically detaches from all currently attached targets.
type SetAutoAttachParams struct {
AutoAttach bool ` json:"autoAttach" ` // Whether to auto-attach to related targets.
WaitForDebuggerOnStart bool ` json:"waitForDebuggerOnStart" ` // Whether to pause new targets when attaching to them. Use Runtime.runIfWaitingForDebugger to run paused targets.
}
// SetAutoAttach controls whether to automatically attach to new targets
// which are considered to be related to this one. When turned on, attaches to
// all existing related targets as well. When turned off, automatically detaches
// from all currently attached targets.
//
// parameters:
// autoAttach - Whether to auto-attach to related targets.
// waitForDebuggerOnStart - Whether to pause new targets when attaching to them. Use Runtime.runIfWaitingForDebugger to run paused targets.
func SetAutoAttach ( autoAttach bool , waitForDebuggerOnStart bool ) * SetAutoAttachParams {
return & SetAutoAttachParams {
AutoAttach : autoAttach ,
WaitForDebuggerOnStart : waitForDebuggerOnStart ,
}
}
2017-02-12 04:59:33 +00:00
// Do executes Target.setAutoAttach against the provided context and
// target handler.
func ( p * SetAutoAttachParams ) Do ( ctxt context . Context , h cdp . Handler ) ( err error ) {
2017-02-14 08:41:23 +00:00
return h . Execute ( ctxt , cdp . CommandTargetSetAutoAttach , p , nil )
2017-01-24 15:09:23 +00:00
}
2017-01-26 07:28:34 +00:00
// SetAttachToFramesParams [no description].
2017-01-24 15:09:23 +00:00
type SetAttachToFramesParams struct {
Value bool ` json:"value" ` // Whether to attach to frames.
}
2017-01-26 07:28:34 +00:00
// SetAttachToFrames [no description].
//
2017-01-24 15:09:23 +00:00
// parameters:
// value - Whether to attach to frames.
func SetAttachToFrames ( value bool ) * SetAttachToFramesParams {
return & SetAttachToFramesParams {
Value : value ,
}
}
2017-02-12 04:59:33 +00:00
// Do executes Target.setAttachToFrames against the provided context and
// target handler.
func ( p * SetAttachToFramesParams ) Do ( ctxt context . Context , h cdp . Handler ) ( err error ) {
2017-02-14 08:41:23 +00:00
return h . Execute ( ctxt , cdp . CommandTargetSetAttachToFrames , p , nil )
2017-01-24 15:09:23 +00:00
}
// SetRemoteLocationsParams enables target discovery for the specified
// locations, when setDiscoverTargets was set to true.
type SetRemoteLocationsParams struct {
Locations [ ] * RemoteLocation ` json:"locations" ` // List of remote locations.
}
// SetRemoteLocations enables target discovery for the specified locations,
// when setDiscoverTargets was set to true.
//
// parameters:
// locations - List of remote locations.
func SetRemoteLocations ( locations [ ] * RemoteLocation ) * SetRemoteLocationsParams {
return & SetRemoteLocationsParams {
Locations : locations ,
}
}
2017-02-12 04:59:33 +00:00
// Do executes Target.setRemoteLocations against the provided context and
// target handler.
func ( p * SetRemoteLocationsParams ) Do ( ctxt context . Context , h cdp . Handler ) ( err error ) {
2017-02-14 08:41:23 +00:00
return h . Execute ( ctxt , cdp . CommandTargetSetRemoteLocations , p , nil )
2017-01-24 15:09:23 +00:00
}
// SendMessageToTargetParams sends protocol message to the target with given
// id.
type SendMessageToTargetParams struct {
2017-04-17 00:32:07 +00:00
TargetID ID ` json:"targetId" `
2017-01-24 15:09:23 +00:00
Message string ` json:"message" `
}
// SendMessageToTarget sends protocol message to the target with given id.
//
// parameters:
2017-01-26 07:28:34 +00:00
// targetID
2017-01-24 15:09:23 +00:00
// message
2017-04-17 00:32:07 +00:00
func SendMessageToTarget ( targetID ID , message string ) * SendMessageToTargetParams {
2017-01-24 15:09:23 +00:00
return & SendMessageToTargetParams {
2017-01-26 07:28:34 +00:00
TargetID : targetID ,
2017-01-24 15:09:23 +00:00
Message : message ,
}
}
2017-02-12 04:59:33 +00:00
// Do executes Target.sendMessageToTarget against the provided context and
// target handler.
func ( p * SendMessageToTargetParams ) Do ( ctxt context . Context , h cdp . Handler ) ( err error ) {
2017-02-14 08:41:23 +00:00
return h . Execute ( ctxt , cdp . CommandTargetSendMessageToTarget , p , nil )
2017-01-24 15:09:23 +00:00
}
// GetTargetInfoParams returns information about a target.
type GetTargetInfoParams struct {
2017-01-26 07:28:34 +00:00
TargetID ID ` json:"targetId" `
2017-01-24 15:09:23 +00:00
}
// GetTargetInfo returns information about a target.
//
// parameters:
2017-01-26 07:28:34 +00:00
// targetID
func GetTargetInfo ( targetID ID ) * GetTargetInfoParams {
2017-01-24 15:09:23 +00:00
return & GetTargetInfoParams {
2017-01-26 07:28:34 +00:00
TargetID : targetID ,
2017-01-24 15:09:23 +00:00
}
}
// GetTargetInfoReturns return values.
type GetTargetInfoReturns struct {
2017-01-26 07:28:34 +00:00
TargetInfo * Info ` json:"targetInfo,omitempty" `
2017-01-24 15:09:23 +00:00
}
2017-02-12 04:59:33 +00:00
// Do executes Target.getTargetInfo against the provided context and
// target handler.
2017-01-24 15:09:23 +00:00
//
// returns:
// targetInfo
2017-02-12 04:59:33 +00:00
func ( p * GetTargetInfoParams ) Do ( ctxt context . Context , h cdp . Handler ) ( targetInfo * Info , err error ) {
2017-02-14 08:41:23 +00:00
// execute
var res GetTargetInfoReturns
err = h . Execute ( ctxt , cdp . CommandTargetGetTargetInfo , p , & res )
2017-01-24 15:09:23 +00:00
if err != nil {
return nil , err
}
2017-02-14 08:41:23 +00:00
return res . TargetInfo , nil
2017-01-24 15:09:23 +00:00
}
// ActivateTargetParams activates (focuses) the target.
type ActivateTargetParams struct {
2017-01-26 07:28:34 +00:00
TargetID ID ` json:"targetId" `
2017-01-24 15:09:23 +00:00
}
// ActivateTarget activates (focuses) the target.
//
// parameters:
2017-01-26 07:28:34 +00:00
// targetID
func ActivateTarget ( targetID ID ) * ActivateTargetParams {
2017-01-24 15:09:23 +00:00
return & ActivateTargetParams {
2017-01-26 07:28:34 +00:00
TargetID : targetID ,
2017-01-24 15:09:23 +00:00
}
}
2017-02-12 04:59:33 +00:00
// Do executes Target.activateTarget against the provided context and
// target handler.
func ( p * ActivateTargetParams ) Do ( ctxt context . Context , h cdp . Handler ) ( err error ) {
2017-02-14 08:41:23 +00:00
return h . Execute ( ctxt , cdp . CommandTargetActivateTarget , p , nil )
2017-01-24 15:09:23 +00:00
}
// CloseTargetParams closes the target. If the target is a page that gets
// closed too.
type CloseTargetParams struct {
2017-01-26 07:28:34 +00:00
TargetID ID ` json:"targetId" `
2017-01-24 15:09:23 +00:00
}
// CloseTarget closes the target. If the target is a page that gets closed
// too.
//
// parameters:
2017-01-26 07:28:34 +00:00
// targetID
func CloseTarget ( targetID ID ) * CloseTargetParams {
2017-01-24 15:09:23 +00:00
return & CloseTargetParams {
2017-01-26 07:28:34 +00:00
TargetID : targetID ,
2017-01-24 15:09:23 +00:00
}
}
// CloseTargetReturns return values.
type CloseTargetReturns struct {
Success bool ` json:"success,omitempty" `
}
2017-02-12 04:59:33 +00:00
// Do executes Target.closeTarget against the provided context and
// target handler.
2017-01-24 15:09:23 +00:00
//
// returns:
// success
2017-02-12 04:59:33 +00:00
func ( p * CloseTargetParams ) Do ( ctxt context . Context , h cdp . Handler ) ( success bool , err error ) {
2017-02-14 08:41:23 +00:00
// execute
var res CloseTargetReturns
err = h . Execute ( ctxt , cdp . CommandTargetCloseTarget , p , & res )
2017-01-24 15:09:23 +00:00
if err != nil {
return false , err
}
2017-02-14 08:41:23 +00:00
return res . Success , nil
2017-01-24 15:09:23 +00:00
}
// AttachToTargetParams attaches to the target with given id.
type AttachToTargetParams struct {
2017-01-26 07:28:34 +00:00
TargetID ID ` json:"targetId" `
2017-01-24 15:09:23 +00:00
}
// AttachToTarget attaches to the target with given id.
//
// parameters:
2017-01-26 07:28:34 +00:00
// targetID
func AttachToTarget ( targetID ID ) * AttachToTargetParams {
2017-01-24 15:09:23 +00:00
return & AttachToTargetParams {
2017-01-26 07:28:34 +00:00
TargetID : targetID ,
2017-01-24 15:09:23 +00:00
}
}
// AttachToTargetReturns return values.
type AttachToTargetReturns struct {
Success bool ` json:"success,omitempty" ` // Whether attach succeeded.
}
2017-02-12 04:59:33 +00:00
// Do executes Target.attachToTarget against the provided context and
// target handler.
2017-01-24 15:09:23 +00:00
//
// returns:
// success - Whether attach succeeded.
2017-02-12 04:59:33 +00:00
func ( p * AttachToTargetParams ) Do ( ctxt context . Context , h cdp . Handler ) ( success bool , err error ) {
2017-02-14 08:41:23 +00:00
// execute
var res AttachToTargetReturns
err = h . Execute ( ctxt , cdp . CommandTargetAttachToTarget , p , & res )
2017-01-24 15:09:23 +00:00
if err != nil {
return false , err
}
2017-02-14 08:41:23 +00:00
return res . Success , nil
2017-01-24 15:09:23 +00:00
}
// DetachFromTargetParams detaches from the target with given id.
type DetachFromTargetParams struct {
2017-01-26 07:28:34 +00:00
TargetID ID ` json:"targetId" `
2017-01-24 15:09:23 +00:00
}
// DetachFromTarget detaches from the target with given id.
//
// parameters:
2017-01-26 07:28:34 +00:00
// targetID
func DetachFromTarget ( targetID ID ) * DetachFromTargetParams {
2017-01-24 15:09:23 +00:00
return & DetachFromTargetParams {
2017-01-26 07:28:34 +00:00
TargetID : targetID ,
2017-01-24 15:09:23 +00:00
}
}
2017-02-12 04:59:33 +00:00
// Do executes Target.detachFromTarget against the provided context and
// target handler.
func ( p * DetachFromTargetParams ) Do ( ctxt context . Context , h cdp . Handler ) ( err error ) {
2017-02-14 08:41:23 +00:00
return h . Execute ( ctxt , cdp . CommandTargetDetachFromTarget , p , nil )
2017-01-24 15:09:23 +00:00
}
// CreateBrowserContextParams creates a new empty BrowserContext. Similar to
// an incognito profile but you can have more than one.
type CreateBrowserContextParams struct { }
// CreateBrowserContext creates a new empty BrowserContext. Similar to an
// incognito profile but you can have more than one.
func CreateBrowserContext ( ) * CreateBrowserContextParams {
return & CreateBrowserContextParams { }
}
// CreateBrowserContextReturns return values.
type CreateBrowserContextReturns struct {
BrowserContextID BrowserContextID ` json:"browserContextId,omitempty" ` // The id of the context created.
}
2017-02-12 04:59:33 +00:00
// Do executes Target.createBrowserContext against the provided context and
// target handler.
2017-01-24 15:09:23 +00:00
//
// returns:
2017-01-26 07:28:34 +00:00
// browserContextID - The id of the context created.
2017-02-12 04:59:33 +00:00
func ( p * CreateBrowserContextParams ) Do ( ctxt context . Context , h cdp . Handler ) ( browserContextID BrowserContextID , err error ) {
2017-01-24 15:09:23 +00:00
// execute
2017-02-14 08:41:23 +00:00
var res CreateBrowserContextReturns
err = h . Execute ( ctxt , cdp . CommandTargetCreateBrowserContext , nil , & res )
if err != nil {
return "" , err
2017-01-24 15:09:23 +00:00
}
2017-02-14 08:41:23 +00:00
return res . BrowserContextID , nil
2017-01-24 15:09:23 +00:00
}
// DisposeBrowserContextParams deletes a BrowserContext, will fail of any
// open page uses it.
type DisposeBrowserContextParams struct {
BrowserContextID BrowserContextID ` json:"browserContextId" `
}
// DisposeBrowserContext deletes a BrowserContext, will fail of any open page
// uses it.
//
// parameters:
2017-01-26 07:28:34 +00:00
// browserContextID
func DisposeBrowserContext ( browserContextID BrowserContextID ) * DisposeBrowserContextParams {
2017-01-24 15:09:23 +00:00
return & DisposeBrowserContextParams {
2017-01-26 07:28:34 +00:00
BrowserContextID : browserContextID ,
2017-01-24 15:09:23 +00:00
}
}
// DisposeBrowserContextReturns return values.
type DisposeBrowserContextReturns struct {
Success bool ` json:"success,omitempty" `
}
2017-02-12 04:59:33 +00:00
// Do executes Target.disposeBrowserContext against the provided context and
// target handler.
2017-01-24 15:09:23 +00:00
//
// returns:
// success
2017-02-12 04:59:33 +00:00
func ( p * DisposeBrowserContextParams ) Do ( ctxt context . Context , h cdp . Handler ) ( success bool , err error ) {
2017-02-14 08:41:23 +00:00
// execute
var res DisposeBrowserContextReturns
err = h . Execute ( ctxt , cdp . CommandTargetDisposeBrowserContext , p , & res )
2017-01-24 15:09:23 +00:00
if err != nil {
return false , err
}
2017-02-14 08:41:23 +00:00
return res . Success , nil
2017-01-24 15:09:23 +00:00
}
// CreateTargetParams creates a new page.
type CreateTargetParams struct {
URL string ` json:"url" ` // The initial URL the page will be navigated to.
Width int64 ` json:"width,omitempty" ` // Frame width in DIP (headless chrome only).
Height int64 ` json:"height,omitempty" ` // Frame height in DIP (headless chrome only).
BrowserContextID BrowserContextID ` json:"browserContextId,omitempty" ` // The browser context to create the page in (headless chrome only).
}
// CreateTarget creates a new page.
//
// parameters:
// url - The initial URL the page will be navigated to.
func CreateTarget ( url string ) * CreateTargetParams {
return & CreateTargetParams {
URL : url ,
}
}
// WithWidth frame width in DIP (headless chrome only).
func ( p CreateTargetParams ) WithWidth ( width int64 ) * CreateTargetParams {
p . Width = width
return & p
}
// WithHeight frame height in DIP (headless chrome only).
func ( p CreateTargetParams ) WithHeight ( height int64 ) * CreateTargetParams {
p . Height = height
return & p
}
// WithBrowserContextID the browser context to create the page in (headless
// chrome only).
2017-01-26 07:28:34 +00:00
func ( p CreateTargetParams ) WithBrowserContextID ( browserContextID BrowserContextID ) * CreateTargetParams {
p . BrowserContextID = browserContextID
2017-01-24 15:09:23 +00:00
return & p
}
// CreateTargetReturns return values.
type CreateTargetReturns struct {
2017-01-26 07:28:34 +00:00
TargetID ID ` json:"targetId,omitempty" ` // The id of the page opened.
2017-01-24 15:09:23 +00:00
}
2017-02-12 04:59:33 +00:00
// Do executes Target.createTarget against the provided context and
// target handler.
2017-01-24 15:09:23 +00:00
//
// returns:
2017-01-26 07:28:34 +00:00
// targetID - The id of the page opened.
2017-02-12 04:59:33 +00:00
func ( p * CreateTargetParams ) Do ( ctxt context . Context , h cdp . Handler ) ( targetID ID , err error ) {
2017-02-14 08:41:23 +00:00
// execute
var res CreateTargetReturns
err = h . Execute ( ctxt , cdp . CommandTargetCreateTarget , p , & res )
2017-01-24 15:09:23 +00:00
if err != nil {
return "" , err
}
2017-02-14 08:41:23 +00:00
return res . TargetID , nil
2017-01-24 15:09:23 +00:00
}
// GetTargetsParams retrieves a list of available targets.
type GetTargetsParams struct { }
// GetTargets retrieves a list of available targets.
func GetTargets ( ) * GetTargetsParams {
return & GetTargetsParams { }
}
// GetTargetsReturns return values.
type GetTargetsReturns struct {
2017-01-26 07:28:34 +00:00
TargetInfos [ ] * Info ` json:"targetInfos,omitempty" ` // The list of targets.
2017-01-24 15:09:23 +00:00
}
2017-02-12 04:59:33 +00:00
// Do executes Target.getTargets against the provided context and
// target handler.
2017-01-24 15:09:23 +00:00
//
// returns:
// targetInfos - The list of targets.
2017-02-12 04:59:33 +00:00
func ( p * GetTargetsParams ) Do ( ctxt context . Context , h cdp . Handler ) ( targetInfos [ ] * Info , err error ) {
2017-01-24 15:09:23 +00:00
// execute
2017-02-14 08:41:23 +00:00
var res GetTargetsReturns
err = h . Execute ( ctxt , cdp . CommandTargetGetTargets , nil , & res )
if err != nil {
return nil , err
2017-01-24 15:09:23 +00:00
}
2017-02-14 08:41:23 +00:00
return res . TargetInfos , nil
2017-01-24 15:09:23 +00:00
}