After is an element query option that sets a func to execute after the matched nodes have been returned by the browser, and after the node condition is true.
AtLeast is an element query option to set a minimum number of elements that must be returned by the query.
Attributes is an element query action that retrieves the element attributes for the first element node matching the selector.
AttributesAll is an element query action that retrieves the element attributes for all element nodes matching the selector.
AttributeValue is an element query action that retrieves the element attribute value for the first element node matching the selector.
Blur is an element query action that unfocuses (blurs) the first element node matching the selector.
Button is a mouse action option to set the button to click from a string.
ButtonLeft is a mouse action option to set the button clicked as the left mouse button.
ButtonMiddle is a mouse action option to set the button clicked as the middle mouse button.
ButtonModifiers is a mouse action option to add additional input modifiers for a button click.
ButtonNone is a mouse action option to set the button clicked as none (used for mouse movements).
ButtonRight is a mouse action option to set the button clicked as the right mouse button.
ButtonType is a mouse action option to set the button to click.
ByFunc is an element query action option to set the func used to select elements.
ByID is an element query option to select a single element by its CSS #id.
ByJSPath is an element query option to select elements by the "JS Path" value (as shown in the Chrome DevTools UI).
ByNodeID is an element query option to select elements by their node IDs.
ByQuery is an element query action option to select a single element by the DOM.querySelector command.
ByQueryAll is an element query action option to select elements by the DOM.querySelectorAll command.
BySearch is an element query option to select elements by the DOM.performSearch command.
CallFunctionOn is an action to call a Javascript function, unmarshaling the result of the function to res.
Cancel cancels a chromedp context, waits for its resources to be cleaned up, and returns any error encountered during that process.
CaptureScreenshot is an action that captures/takes a screenshot of the current browser viewport.
Clear is an element query action that clears the values of any input/textarea element nodes matching the selector.
Click is an element query action that sends a mouse click event to the first element node matching the selector.
ClickCount is a mouse action option to set the click count.
CombinedOutput is used to set an io.Writer where stdout and stderr from the browser will be sent.
ComputedStyle is an element query action that retrieves the computed style of the first element node matching the selector.
DialContext dials the specified websocket URL using gobwas/ws.
Dimensions is an element query action that retrieves the box model dimensions for the first element node matching the selector.
DisableGPU is the command line option to disable the GPU process.
DoubleClick is an element query action that sends a mouse double click event to the first element node matching the selector.
Emulate is an action to emulate a specific device.
EmulateLandscape is an emulate viewport option to set the device viewport screen orientation in landscape primary mode and an angle of 90.
EmulateMobile is an emulate viewport option to toggle the device viewport to display as a mobile device.
EmulateOrientation is an emulate viewport option to set the device viewport screen orientation.
EmulatePortrait is an emulate viewport option to set the device viewport screen orientation in portrait primary mode and an angle of 0.
EmulateReset is an action to reset the device emulation.
EmulateScale is an emulate viewport option to set the device viewport scaling factor.
EmulateTouch is an emulate viewport option to enable touch emulation.
EmulateViewport is an action to change the browser viewport.
Env is a list of generic environment variables in the form NAME=value to pass into the new Chrome process.
EvalAsValue is a evaluate option that will cause the evaluated Javascript expression to encode the result of the expression as a JSON-encoded value.
EvalIgnoreExceptions is a evaluate option that will cause Javascript evaluation to ignore exceptions.
EvalObjectGroup is a evaluate option to set the object group.
Evaluate is an action to evaluate the Javascript expression, unmarshaling the result of the script evaluation to res.
EvaluateAsDevTools is an action that evaluates a Javascript expression as Chrome DevTools would, evaluating the expression in the "console" context, and making the Command Line API available to the script.
EvalWithCommandLineAPI is an evaluate option to make the DevTools Command Line API available to the evaluated script.
ExecPath returns an ExecAllocatorOption which uses the given path to execute browser processes.
Flag is a generic command line option to pass a flag to Chrome.
Focus is an element query action that focuses the first element node matching the selector.
FromContext extracts the Context data stored inside a context.Context.
FromNode is an element query action option where a query will be run.
FullScreenshot takes a full screenshot with the specified image quality of the entire browser viewport.
Headless is the command line option to run in headless mode.
IgnoreCertErrors is the command line option to ignore certificate-related errors.
InnerHTML is an element query action that retrieves the inner html of the first element node matching the selector.
JavascriptAttribute is an element query action that retrieves the Javascript attribute for the first element node matching the selector.
KeyEvent is a key action that synthesizes a keyDown, char, and keyUp event for each rune contained in keys along with any supplied key options.
KeyEventNode is a key action that dispatches a key event on a element node.
KeyModifiers is a key action option to add additional modifiers on the key press.
ListenBrowser adds a function which will be called whenever a browser event is received on the chromedp context.
ListenTarget adds a function which will be called whenever a target event is received on the chromedp context.
Location is an action that retrieves the document location.
MatchedStyle is an element query action that retrieves the matched style information for the first element node matching the selector.
ModifyCmdFunc allows for running an arbitrary function on the browser exec.Cmd object.
MouseClickNode is an action that dispatches a mouse left button click event at the center of a specified node.
MouseClickXY is an action that sends a left mouse button click (ie, mousePressed and mouseReleased event) to the X, Y location.
MouseEvent is a mouse event action to dispatch the specified mouse event type at coordinates x, y.
Navigate is an action that navigates the current frame.
NavigateBack is an action that navigates the current frame backwards in its history.
NavigateForward is an action that navigates the current frame forwards in its history.
NavigateToHistoryEntry is an action to navigate to the specified navigation entry.
NavigationEntries is an action that retrieves the page's navigation history entries.
NewBrowser creates a new browser.
NewContext creates a chromedp context from the parent context.
NewExecAllocator creates a new context set up with an ExecAllocator, suitable for use with NewContext.
NewRemoteAllocator creates a new context set up with a RemoteAllocator, suitable for use with NewContext.
NodeEnabled is an element query option to wait until all queried element nodes have been sent by the browser and are enabled (ie, do not have a 'disabled' attribute).
NoDefaultBrowserCheck is the Chrome command line option to disable the default browser check.
NodeIDs is an element query action that retrieves the element node IDs matching the selector.
NodeNotPresent is an element query option to wait until no elements are present that match the query.
NodeNotVisible is an element query option to wait until all queried element nodes have been sent by the browser and are not visible.
NodeReady is an element query option to wait until all queried element nodes have been sent by the browser.
Nodes is an element query action that retrieves the document element nodes matching the selector.
NodeSelected is an element query option to wait until all queried element nodes have been sent by the browser and are selected (ie, has 'selected' attribute).
NodeVisible is an element query option to wait until all queried element nodes have been sent by the browser and are visible.
NoFirstRun is the Chrome command line option to disable the first run dialog.
NoModifyURL is a RemoteAllocatorOption that prevents the remote allocator from modifying the websocket debugger URL passed to it.
NoSandbox is the Chrome command line option to disable the sandbox.
OuterHTML is an element query action that retrieves the outer html of the first element node matching the selector.
Poll is a poll action that will wait for a general Javascript predicate.
PollFunction is a poll action that will wait for a general Javascript predicate.
ProxyServer is the command line option to set the outbound proxy server.
Query is a query action that queries the browser for specific element node(s) matching the criteria.
QueryAfter is an element query action that queries the browser for selector sel.
Reload is an action that reloads the current page.
RemoveAttribute is an element query action that removes the element attribute with name from the first element node matching the selector.
Reset is an element query action that resets the parent form of the first element node matching the selector.
ResetViewport is an action to reset the browser viewport to the default values the browser was started with.
RetryInterval is an element query action option to set the retry interval to specify how often it should retry when it failed to select the target element(s).
Run runs an action against context.
RunResponse is an alternative to Run which can be used with a list of actions that trigger a page navigation, such as clicking on a link or button.
Screenshot is an element query action that takes a screenshot of the first element node matching the selector.
ScrollIntoView is an element query action that scrolls the window to the first element node matching the selector.
SendKeys is an element query action that synthesizes the key up, char, and down events as needed for the runes in v, sending them to the first element node matching the selector.
SetAttributes is an element query action that sets the element attributes for the first element node matching the selector.
SetAttributeValue is an element query action that sets the element attribute with name to value for the first element node matching the selector.
SetJavascriptAttribute is an element query action that sets the Javascript attribute for the first element node matching the selector.
SetUploadFiles is an element query action that sets the files to upload (ie, for a input[type="file"] node) for the first element node matching the selector.
SetValue is an element query action that sets the Javascript value of the first element node matching the selector.
Sleep is an empty action that calls time.Sleep with the specified duration.
Stop is an action that stops all navigation and pending resource retrieval.
Submit is an element query action that submits the parent form of the first element node matching the selector.
Targets lists all the targets in the browser attached to the given context.
Text is an element query action that retrieves the visible text of the first element node matching the selector.
TextContent is an element query action that retrieves the text content of the first element node matching the selector.
Title is an action that retrieves the document title.
UserAgent is the command line option to set the default User-Agent header.
UserDataDir is the command line option to set the user data dir.
Value is an element query action that retrieves the Javascript value field of the first element node matching the selector.
WaitEnabled is an element query action that waits until the element matching the selector is enabled (ie, does not have attribute 'disabled').
WaitFunc is an element query option to set a custom node condition wait.
WaitNewTarget can be used to wait for the current target to open a new target.
WaitNotPresent is an element query action that waits until no elements are present matching the selector.
WaitNotVisible is an element query action that waits until the element matching the selector is not visible.
WaitReady is an element query action that waits until the element matching the selector is ready (ie, has been "loaded").
WaitSelected is an element query action that waits until the element matching the selector is selected (ie, has attribute 'selected').
WaitVisible is an element query action that waits until the element matching the selector is visible.
WindowSize is the command line option to set the initial window size.
WithBrowserDebugf is a browser option to specify a func to log actual websocket messages.
WithBrowserErrorf is a browser option to specify a func to receive error logging.
WithBrowserLogf is a browser option to specify a func to receive general logging.
WithBrowserOption allows passing a number of browser options to the allocator when allocating a new browser.
WithConnDebugf is a dial option to set a protocol logger.
WithConsolef is a browser option to specify a func to receive chrome log events.
WithDebugf is a shortcut for WithBrowserOption(WithBrowserDebugf(f)).
WithDialTimeout is a browser option to specify the timeout when dialing a browser's websocket address.
WithErrorf is a shortcut for WithBrowserOption(WithBrowserErrorf(f)).
WithLogf is a shortcut for WithBrowserOption(WithBrowserLogf(f)).
WithPollingArgs provides extra arguments to pass to the predicate.
WithPollingInFrame specifies the frame in which to evaluate the predicate.
WithPollingInterval makes it to poll the predicate with the specified interval.
WithPollingMutation makes it to poll the predicate on every DOM mutation.
WithPollingTimeout specifies the maximum time to wait for the predicate returns truthy value.
WithTargetID sets up a context to be attached to an existing target, instead of creating a new one.
WSURLReadTimeout sets the waiting time for reading the WebSocket URL.