// Package emulation provides the Chrome DevTools Protocol
// commands, types, and events for the Emulation domain.
//
// This domain emulates different environments for the page.
//
// Generated by the cdproto-gen command.
package emulation

// Code generated by cdproto-gen. DO NOT EDIT.

import (
	"context"

	"github.com/chromedp/cdproto/cdp"
	"github.com/chromedp/cdproto/page"
)

// ClearDeviceMetricsOverrideParams clears the overridden device metrics.
type ClearDeviceMetricsOverrideParams struct{}

// ClearDeviceMetricsOverride clears the overridden device metrics.
//
// See: https://chromedevtools.github.io/devtools-protocol/tot/Emulation#method-clearDeviceMetricsOverride
func ClearDeviceMetricsOverride() *ClearDeviceMetricsOverrideParams {
	return &ClearDeviceMetricsOverrideParams{}
}

// Do executes Emulation.clearDeviceMetricsOverride against the provided context.
func (p *ClearDeviceMetricsOverrideParams) Do(ctx context.Context) (err error) {
	return cdp.Execute(ctx, CommandClearDeviceMetricsOverride, nil, nil)
}

// ClearGeolocationOverrideParams clears the overridden Geolocation Position
// and Error.
type ClearGeolocationOverrideParams struct{}

// ClearGeolocationOverride clears the overridden Geolocation Position and
// Error.
//
// See: https://chromedevtools.github.io/devtools-protocol/tot/Emulation#method-clearGeolocationOverride
func ClearGeolocationOverride() *ClearGeolocationOverrideParams {
	return &ClearGeolocationOverrideParams{}
}

// Do executes Emulation.clearGeolocationOverride against the provided context.
func (p *ClearGeolocationOverrideParams) Do(ctx context.Context) (err error) {
	return cdp.Execute(ctx, CommandClearGeolocationOverride, nil, nil)
}

// ResetPageScaleFactorParams requests that page scale factor is reset to
// initial values.
type ResetPageScaleFactorParams struct{}

// ResetPageScaleFactor requests that page scale factor is reset to initial
// values.
//
// See: https://chromedevtools.github.io/devtools-protocol/tot/Emulation#method-resetPageScaleFactor
func ResetPageScaleFactor() *ResetPageScaleFactorParams {
	return &ResetPageScaleFactorParams{}
}

// Do executes Emulation.resetPageScaleFactor against the provided context.
func (p *ResetPageScaleFactorParams) Do(ctx context.Context) (err error) {
	return cdp.Execute(ctx, CommandResetPageScaleFactor, nil, nil)
}

// SetFocusEmulationEnabledParams enables or disables simulating a focused
// and active page.
type SetFocusEmulationEnabledParams struct {
	Enabled bool `json:"enabled"` // Whether to enable to disable focus emulation.
}

// SetFocusEmulationEnabled enables or disables simulating a focused and
// active page.
//
// See: https://chromedevtools.github.io/devtools-protocol/tot/Emulation#method-setFocusEmulationEnabled
//
// parameters:
//
//	enabled - Whether to enable to disable focus emulation.
func SetFocusEmulationEnabled(enabled bool) *SetFocusEmulationEnabledParams {
	return &SetFocusEmulationEnabledParams{
		Enabled: enabled,
	}
}

// Do executes Emulation.setFocusEmulationEnabled against the provided context.
func (p *SetFocusEmulationEnabledParams) Do(ctx context.Context) (err error) {
	return cdp.Execute(ctx, CommandSetFocusEmulationEnabled, p, nil)
}

// SetAutoDarkModeOverrideParams automatically render all web contents using
// a dark theme.
type SetAutoDarkModeOverrideParams struct {
	Enabled bool `json:"enabled"` // Whether to enable or disable automatic dark mode. If not specified, any existing override will be cleared.
}

// SetAutoDarkModeOverride automatically render all web contents using a dark
// theme.
//
// See: https://chromedevtools.github.io/devtools-protocol/tot/Emulation#method-setAutoDarkModeOverride
//
// parameters:
func SetAutoDarkModeOverride() *SetAutoDarkModeOverrideParams {
	return &SetAutoDarkModeOverrideParams{
		Enabled: false,
	}
}

// WithEnabled whether to enable or disable automatic dark mode. If not
// specified, any existing override will be cleared.
func (p SetAutoDarkModeOverrideParams) WithEnabled(enabled bool) *SetAutoDarkModeOverrideParams {
	p.Enabled = enabled
	return &p
}

// Do executes Emulation.setAutoDarkModeOverride against the provided context.
func (p *SetAutoDarkModeOverrideParams) Do(ctx context.Context) (err error) {
	return cdp.Execute(ctx, CommandSetAutoDarkModeOverride, p, nil)
}

// SetCPUThrottlingRateParams enables CPU throttling to emulate slow CPUs.
type SetCPUThrottlingRateParams struct {
	Rate float64 `json:"rate"` // Throttling rate as a slowdown factor (1 is no throttle, 2 is 2x slowdown, etc).
}

// SetCPUThrottlingRate enables CPU throttling to emulate slow CPUs.
//
// See: https://chromedevtools.github.io/devtools-protocol/tot/Emulation#method-setCPUThrottlingRate
//
// parameters:
//
//	rate - Throttling rate as a slowdown factor (1 is no throttle, 2 is 2x slowdown, etc).
func SetCPUThrottlingRate(rate float64) *SetCPUThrottlingRateParams {
	return &SetCPUThrottlingRateParams{
		Rate: rate,
	}
}

// Do executes Emulation.setCPUThrottlingRate against the provided context.
func (p *SetCPUThrottlingRateParams) Do(ctx context.Context) (err error) {
	return cdp.Execute(ctx, CommandSetCPUThrottlingRate, p, nil)
}

// SetDefaultBackgroundColorOverrideParams sets or clears an override of the
// default background color of the frame. This override is used if the content
// does not specify one.
type SetDefaultBackgroundColorOverrideParams struct {
	Color *cdp.RGBA `json:"color,omitempty,omitzero"` // RGBA of the default background color. If not specified, any existing override will be cleared.
}

// SetDefaultBackgroundColorOverride sets or clears an override of the
// default background color of the frame. This override is used if the content
// does not specify one.
//
// See: https://chromedevtools.github.io/devtools-protocol/tot/Emulation#method-setDefaultBackgroundColorOverride
//
// parameters:
func SetDefaultBackgroundColorOverride() *SetDefaultBackgroundColorOverrideParams {
	return &SetDefaultBackgroundColorOverrideParams{}
}

// WithColor rGBA of the default background color. If not specified, any
// existing override will be cleared.
func (p SetDefaultBackgroundColorOverrideParams) WithColor(color *cdp.RGBA) *SetDefaultBackgroundColorOverrideParams {
	p.Color = color
	return &p
}

// Do executes Emulation.setDefaultBackgroundColorOverride against the provided context.
func (p *SetDefaultBackgroundColorOverrideParams) Do(ctx context.Context) (err error) {
	return cdp.Execute(ctx, CommandSetDefaultBackgroundColorOverride, p, nil)
}

// SetSafeAreaInsetsOverrideParams overrides the values for
// env(safe-area-inset-*) and env(safe-area-max-inset-*). Unset values will
// cause the respective variables to be undefined, even if previously
// overridden.
type SetSafeAreaInsetsOverrideParams struct {
	Insets *SafeAreaInsets `json:"insets"`
}

// SetSafeAreaInsetsOverride overrides the values for env(safe-area-inset-*)
// and env(safe-area-max-inset-*). Unset values will cause the respective
// variables to be undefined, even if previously overridden.
//
// See: https://chromedevtools.github.io/devtools-protocol/tot/Emulation#method-setSafeAreaInsetsOverride
//
// parameters:
//
//	insets
func SetSafeAreaInsetsOverride(insets *SafeAreaInsets) *SetSafeAreaInsetsOverrideParams {
	return &SetSafeAreaInsetsOverrideParams{
		Insets: insets,
	}
}

// Do executes Emulation.setSafeAreaInsetsOverride against the provided context.
func (p *SetSafeAreaInsetsOverrideParams) Do(ctx context.Context) (err error) {
	return cdp.Execute(ctx, CommandSetSafeAreaInsetsOverride, p, nil)
}

// SetDeviceMetricsOverrideParams overrides the values of device screen
// dimensions (window.screen.width, window.screen.height, window.innerWidth,
// window.innerHeight, and "device-width"/"device-height"-related CSS media
// query results).
type SetDeviceMetricsOverrideParams struct {
	Width                          int64                                 `json:"width"`                                // Overriding width value in pixels (minimum 0, maximum 10000000). 0 disables the override.
	Height                         int64                                 `json:"height"`                               // Overriding height value in pixels (minimum 0, maximum 10000000). 0 disables the override.
	DeviceScaleFactor              float64                               `json:"deviceScaleFactor"`                    // Overriding device scale factor value. 0 disables the override.
	Mobile                         bool                                  `json:"mobile"`                               // Whether to emulate mobile device. This includes viewport meta tag, overlay scrollbars, text autosizing and more.
	Scale                          float64                               `json:"scale,omitempty,omitzero"`             // Scale to apply to resulting view image.
	ScreenWidth                    int64                                 `json:"screenWidth,omitempty,omitzero"`       // Overriding screen width value in pixels (minimum 0, maximum 10000000).
	ScreenHeight                   int64                                 `json:"screenHeight,omitempty,omitzero"`      // Overriding screen height value in pixels (minimum 0, maximum 10000000).
	PositionX                      int64                                 `json:"positionX,omitempty,omitzero"`         // Overriding view X position on screen in pixels (minimum 0, maximum 10000000).
	PositionY                      int64                                 `json:"positionY,omitempty,omitzero"`         // Overriding view Y position on screen in pixels (minimum 0, maximum 10000000).
	DontSetVisibleSize             bool                                  `json:"dontSetVisibleSize"`                   // Do not set visible view size, rely upon explicit setVisibleSize call.
	ScreenOrientation              *ScreenOrientation                    `json:"screenOrientation,omitempty,omitzero"` // Screen orientation override.
	Viewport                       *page.Viewport                        `json:"viewport,omitempty,omitzero"`          // If set, the visible area of the page will be overridden to this viewport. This viewport change is not observed by the page, e.g. viewport-relative elements do not change positions.
	ScrollbarType                  SetDeviceMetricsOverrideScrollbarType `json:"scrollbarType,omitempty,omitzero"`     // Scrollbar type. Default: default.
	ScreenOrientationLockEmulation bool                                  `json:"screenOrientationLockEmulation"`       // If set to true, enables screen orientation lock emulation, which intercepts screen.orientation.lock() calls from the page and reports orientation changes via screenOrientationLockChanged events. This is useful for emulating mobile device orientation lock behavior in responsive design mode.
}

// SetDeviceMetricsOverride overrides the values of device screen dimensions
// (window.screen.width, window.screen.height, window.innerWidth,
// window.innerHeight, and "device-width"/"device-height"-related CSS media
// query results).
//
// See: https://chromedevtools.github.io/devtools-protocol/tot/Emulation#method-setDeviceMetricsOverride
//
// parameters:
//
//	width - Overriding width value in pixels (minimum 0, maximum 10000000). 0 disables the override.
//	height - Overriding height value in pixels (minimum 0, maximum 10000000). 0 disables the override.
//	deviceScaleFactor - Overriding device scale factor value. 0 disables the override.
//	mobile - Whether to emulate mobile device. This includes viewport meta tag, overlay scrollbars, text autosizing and more.
func SetDeviceMetricsOverride(width int64, height int64, deviceScaleFactor float64, mobile bool) *SetDeviceMetricsOverrideParams {
	return &SetDeviceMetricsOverrideParams{
		Width:                          width,
		Height:                         height,
		DeviceScaleFactor:              deviceScaleFactor,
		Mobile:                         mobile,
		DontSetVisibleSize:             false,
		ScreenOrientationLockEmulation: false,
	}
}

// WithScale scale to apply to resulting view image.
func (p SetDeviceMetricsOverrideParams) WithScale(scale float64) *SetDeviceMetricsOverrideParams {
	p.Scale = scale
	return &p
}

// WithScreenWidth overriding screen width value in pixels (minimum 0,
// maximum 10000000).
func (p SetDeviceMetricsOverrideParams) WithScreenWidth(screenWidth int64) *SetDeviceMetricsOverrideParams {
	p.ScreenWidth = screenWidth
	return &p
}

// WithScreenHeight overriding screen height value in pixels (minimum 0,
// maximum 10000000).
func (p SetDeviceMetricsOverrideParams) WithScreenHeight(screenHeight int64) *SetDeviceMetricsOverrideParams {
	p.ScreenHeight = screenHeight
	return &p
}

// WithPositionX overriding view X position on screen in pixels (minimum 0,
// maximum 10000000).
func (p SetDeviceMetricsOverrideParams) WithPositionX(positionX int64) *SetDeviceMetricsOverrideParams {
	p.PositionX = positionX
	return &p
}

// WithPositionY overriding view Y position on screen in pixels (minimum 0,
// maximum 10000000).
func (p SetDeviceMetricsOverrideParams) WithPositionY(positionY int64) *SetDeviceMetricsOverrideParams {
	p.PositionY = positionY
	return &p
}

// WithDontSetVisibleSize do not set visible view size, rely upon explicit
// setVisibleSize call.
func (p SetDeviceMetricsOverrideParams) WithDontSetVisibleSize(dontSetVisibleSize bool) *SetDeviceMetricsOverrideParams {
	p.DontSetVisibleSize = dontSetVisibleSize
	return &p
}

// WithScreenOrientation screen orientation override.
func (p SetDeviceMetricsOverrideParams) WithScreenOrientation(screenOrientation *ScreenOrientation) *SetDeviceMetricsOverrideParams {
	p.ScreenOrientation = screenOrientation
	return &p
}

// WithViewport if set, the visible area of the page will be overridden to
// this viewport. This viewport change is not observed by the page, e.g.
// viewport-relative elements do not change positions.
func (p SetDeviceMetricsOverrideParams) WithViewport(viewport *page.Viewport) *SetDeviceMetricsOverrideParams {
	p.Viewport = viewport
	return &p
}

// WithScrollbarType scrollbar type. Default: default.
func (p SetDeviceMetricsOverrideParams) WithScrollbarType(scrollbarType SetDeviceMetricsOverrideScrollbarType) *SetDeviceMetricsOverrideParams {
	p.ScrollbarType = scrollbarType
	return &p
}

// WithScreenOrientationLockEmulation if set to true, enables screen
// orientation lock emulation, which intercepts screen.orientation.lock() calls
// from the page and reports orientation changes via
// screenOrientationLockChanged events. This is useful for emulating mobile
// device orientation lock behavior in responsive design mode.
func (p SetDeviceMetricsOverrideParams) WithScreenOrientationLockEmulation(screenOrientationLockEmulation bool) *SetDeviceMetricsOverrideParams {
	p.ScreenOrientationLockEmulation = screenOrientationLockEmulation
	return &p
}

// Do executes Emulation.setDeviceMetricsOverride against the provided context.
func (p *SetDeviceMetricsOverrideParams) Do(ctx context.Context) (err error) {
	return cdp.Execute(ctx, CommandSetDeviceMetricsOverride, p, nil)
}

// SetDevicePostureOverrideParams start reporting the given posture value to
// the Device Posture API. This override can also be set in
// setDeviceMetricsOverride().
type SetDevicePostureOverrideParams struct {
	Posture *DevicePosture `json:"posture"`
}

// SetDevicePostureOverride start reporting the given posture value to the
// Device Posture API. This override can also be set in
// setDeviceMetricsOverride().
//
// See: https://chromedevtools.github.io/devtools-protocol/tot/Emulation#method-setDevicePostureOverride
//
// parameters:
//
//	posture
func SetDevicePostureOverride(posture *DevicePosture) *SetDevicePostureOverrideParams {
	return &SetDevicePostureOverrideParams{
		Posture: posture,
	}
}

// Do executes Emulation.setDevicePostureOverride against the provided context.
func (p *SetDevicePostureOverrideParams) Do(ctx context.Context) (err error) {
	return cdp.Execute(ctx, CommandSetDevicePostureOverride, p, nil)
}

// ClearDevicePostureOverrideParams clears a device posture override set with
// either setDeviceMetricsOverride() or setDevicePostureOverride() and starts
// using posture information from the platform again. Does nothing if no
// override is set.
type ClearDevicePostureOverrideParams struct{}

// ClearDevicePostureOverride clears a device posture override set with
// either setDeviceMetricsOverride() or setDevicePostureOverride() and starts
// using posture information from the platform again. Does nothing if no
// override is set.
//
// See: https://chromedevtools.github.io/devtools-protocol/tot/Emulation#method-clearDevicePostureOverride
func ClearDevicePostureOverride() *ClearDevicePostureOverrideParams {
	return &ClearDevicePostureOverrideParams{}
}

// Do executes Emulation.clearDevicePostureOverride against the provided context.
func (p *ClearDevicePostureOverrideParams) Do(ctx context.Context) (err error) {
	return cdp.Execute(ctx, CommandClearDevicePostureOverride, nil, nil)
}

// SetDisplayFeaturesOverrideParams start using the given display features to
// pupulate the Viewport Segments API. This override can also be set in
// setDeviceMetricsOverride().
type SetDisplayFeaturesOverrideParams struct {
	Features []*DisplayFeature `json:"features"`
}

// SetDisplayFeaturesOverride start using the given display features to
// pupulate the Viewport Segments API. This override can also be set in
// setDeviceMetricsOverride().
//
// See: https://chromedevtools.github.io/devtools-protocol/tot/Emulation#method-setDisplayFeaturesOverride
//
// parameters:
//
//	features
func SetDisplayFeaturesOverride(features []*DisplayFeature) *SetDisplayFeaturesOverrideParams {
	return &SetDisplayFeaturesOverrideParams{
		Features: features,
	}
}

// Do executes Emulation.setDisplayFeaturesOverride against the provided context.
func (p *SetDisplayFeaturesOverrideParams) Do(ctx context.Context) (err error) {
	return cdp.Execute(ctx, CommandSetDisplayFeaturesOverride, p, nil)
}

// ClearDisplayFeaturesOverrideParams clears the display features override
// set with either setDeviceMetricsOverride() or setDisplayFeaturesOverride()
// and starts using display features from the platform again. Does nothing if no
// override is set.
type ClearDisplayFeaturesOverrideParams struct{}

// ClearDisplayFeaturesOverride clears the display features override set with
// either setDeviceMetricsOverride() or setDisplayFeaturesOverride() and starts
// using display features from the platform again. Does nothing if no override
// is set.
//
// See: https://chromedevtools.github.io/devtools-protocol/tot/Emulation#method-clearDisplayFeaturesOverride
func ClearDisplayFeaturesOverride() *ClearDisplayFeaturesOverrideParams {
	return &ClearDisplayFeaturesOverrideParams{}
}

// Do executes Emulation.clearDisplayFeaturesOverride against the provided context.
func (p *ClearDisplayFeaturesOverrideParams) Do(ctx context.Context) (err error) {
	return cdp.Execute(ctx, CommandClearDisplayFeaturesOverride, nil, nil)
}

// SetScrollbarsHiddenParams [no description].
type SetScrollbarsHiddenParams struct {
	Hidden bool `json:"hidden"` // Whether scrollbars should be always hidden.
}

// SetScrollbarsHidden [no description].
//
// See: https://chromedevtools.github.io/devtools-protocol/tot/Emulation#method-setScrollbarsHidden
//
// parameters:
//
//	hidden - Whether scrollbars should be always hidden.
func SetScrollbarsHidden(hidden bool) *SetScrollbarsHiddenParams {
	return &SetScrollbarsHiddenParams{
		Hidden: hidden,
	}
}

// Do executes Emulation.setScrollbarsHidden against the provided context.
func (p *SetScrollbarsHiddenParams) Do(ctx context.Context) (err error) {
	return cdp.Execute(ctx, CommandSetScrollbarsHidden, p, nil)
}

// SetDocumentCookieDisabledParams [no description].
type SetDocumentCookieDisabledParams struct {
	Disabled bool `json:"disabled"` // Whether document.coookie API should be disabled.
}

// SetDocumentCookieDisabled [no description].
//
// See: https://chromedevtools.github.io/devtools-protocol/tot/Emulation#method-setDocumentCookieDisabled
//
// parameters:
//
//	disabled - Whether document.coookie API should be disabled.
func SetDocumentCookieDisabled(disabled bool) *SetDocumentCookieDisabledParams {
	return &SetDocumentCookieDisabledParams{
		Disabled: disabled,
	}
}

// Do executes Emulation.setDocumentCookieDisabled against the provided context.
func (p *SetDocumentCookieDisabledParams) Do(ctx context.Context) (err error) {
	return cdp.Execute(ctx, CommandSetDocumentCookieDisabled, p, nil)
}

// SetEmitTouchEventsForMouseParams [no description].
type SetEmitTouchEventsForMouseParams struct {
	Enabled       bool                                    `json:"enabled"`                          // Whether touch emulation based on mouse input should be enabled.
	Configuration SetEmitTouchEventsForMouseConfiguration `json:"configuration,omitempty,omitzero"` // Touch/gesture events configuration. Default: current platform.
}

// SetEmitTouchEventsForMouse [no description].
//
// See: https://chromedevtools.github.io/devtools-protocol/tot/Emulation#method-setEmitTouchEventsForMouse
//
// parameters:
//
//	enabled - Whether touch emulation based on mouse input should be enabled.
func SetEmitTouchEventsForMouse(enabled bool) *SetEmitTouchEventsForMouseParams {
	return &SetEmitTouchEventsForMouseParams{
		Enabled: enabled,
	}
}

// WithConfiguration touch/gesture events configuration. Default: current
// platform.
func (p SetEmitTouchEventsForMouseParams) WithConfiguration(configuration SetEmitTouchEventsForMouseConfiguration) *SetEmitTouchEventsForMouseParams {
	p.Configuration = configuration
	return &p
}

// Do executes Emulation.setEmitTouchEventsForMouse against the provided context.
func (p *SetEmitTouchEventsForMouseParams) Do(ctx context.Context) (err error) {
	return cdp.Execute(ctx, CommandSetEmitTouchEventsForMouse, p, nil)
}

// SetEmulatedMediaParams emulates the given media type or media feature for
// CSS media queries.
type SetEmulatedMediaParams struct {
	Media    string          `json:"media,omitempty,omitzero"`    // Media type to emulate. Empty string disables the override.
	Features []*MediaFeature `json:"features,omitempty,omitzero"` // Media features to emulate.
}

// SetEmulatedMedia emulates the given media type or media feature for CSS
// media queries.
//
// See: https://chromedevtools.github.io/devtools-protocol/tot/Emulation#method-setEmulatedMedia
//
// parameters:
func SetEmulatedMedia() *SetEmulatedMediaParams {
	return &SetEmulatedMediaParams{}
}

// WithMedia media type to emulate. Empty string disables the override.
func (p SetEmulatedMediaParams) WithMedia(media string) *SetEmulatedMediaParams {
	p.Media = media
	return &p
}

// WithFeatures media features to emulate.
func (p SetEmulatedMediaParams) WithFeatures(features []*MediaFeature) *SetEmulatedMediaParams {
	p.Features = features
	return &p
}

// Do executes Emulation.setEmulatedMedia against the provided context.
func (p *SetEmulatedMediaParams) Do(ctx context.Context) (err error) {
	return cdp.Execute(ctx, CommandSetEmulatedMedia, p, nil)
}

// SetEmulatedVisionDeficiencyParams emulates the given vision deficiency.
type SetEmulatedVisionDeficiencyParams struct {
	Type SetEmulatedVisionDeficiencyType `json:"type"` // Vision deficiency to emulate. Order: best-effort emulations come first, followed by any physiologically accurate emulations for medically recognized color vision deficiencies.
}

// SetEmulatedVisionDeficiency emulates the given vision deficiency.
//
// See: https://chromedevtools.github.io/devtools-protocol/tot/Emulation#method-setEmulatedVisionDeficiency
//
// parameters:
//
//	type - Vision deficiency to emulate. Order: best-effort emulations come first, followed by any physiologically accurate emulations for medically recognized color vision deficiencies.
func SetEmulatedVisionDeficiency(typeVal SetEmulatedVisionDeficiencyType) *SetEmulatedVisionDeficiencyParams {
	return &SetEmulatedVisionDeficiencyParams{
		Type: typeVal,
	}
}

// Do executes Emulation.setEmulatedVisionDeficiency against the provided context.
func (p *SetEmulatedVisionDeficiencyParams) Do(ctx context.Context) (err error) {
	return cdp.Execute(ctx, CommandSetEmulatedVisionDeficiency, p, nil)
}

// SetEmulatedOSTextScaleParams emulates the given OS text scale.
type SetEmulatedOSTextScaleParams struct {
	Scale float64 `json:"scale,omitempty,omitzero"`
}

// SetEmulatedOSTextScale emulates the given OS text scale.
//
// See: https://chromedevtools.github.io/devtools-protocol/tot/Emulation#method-setEmulatedOSTextScale
//
// parameters:
func SetEmulatedOSTextScale() *SetEmulatedOSTextScaleParams {
	return &SetEmulatedOSTextScaleParams{}
}

// WithScale [no description].
func (p SetEmulatedOSTextScaleParams) WithScale(scale float64) *SetEmulatedOSTextScaleParams {
	p.Scale = scale
	return &p
}

// Do executes Emulation.setEmulatedOSTextScale against the provided context.
func (p *SetEmulatedOSTextScaleParams) Do(ctx context.Context) (err error) {
	return cdp.Execute(ctx, CommandSetEmulatedOSTextScale, p, nil)
}

// SetGeolocationOverrideParams overrides the Geolocation Position or Error.
// Omitting latitude, longitude or accuracy emulates position unavailable.
type SetGeolocationOverrideParams struct {
	Latitude         float64 `json:"latitude,omitempty,omitzero"`         // Mock latitude
	Longitude        float64 `json:"longitude,omitempty,omitzero"`        // Mock longitude
	Accuracy         float64 `json:"accuracy,omitempty,omitzero"`         // Mock accuracy
	Altitude         float64 `json:"altitude,omitempty,omitzero"`         // Mock altitude
	AltitudeAccuracy float64 `json:"altitudeAccuracy,omitempty,omitzero"` // Mock altitudeAccuracy
	Heading          float64 `json:"heading,omitempty,omitzero"`          // Mock heading
	Speed            float64 `json:"speed,omitempty,omitzero"`            // Mock speed
}

// SetGeolocationOverride overrides the Geolocation Position or Error.
// Omitting latitude, longitude or accuracy emulates position unavailable.
//
// See: https://chromedevtools.github.io/devtools-protocol/tot/Emulation#method-setGeolocationOverride
//
// parameters:
func SetGeolocationOverride() *SetGeolocationOverrideParams {
	return &SetGeolocationOverrideParams{}
}

// WithLatitude mock latitude.
func (p SetGeolocationOverrideParams) WithLatitude(latitude float64) *SetGeolocationOverrideParams {
	p.Latitude = latitude
	return &p
}

// WithLongitude mock longitude.
func (p SetGeolocationOverrideParams) WithLongitude(longitude float64) *SetGeolocationOverrideParams {
	p.Longitude = longitude
	return &p
}

// WithAccuracy mock accuracy.
func (p SetGeolocationOverrideParams) WithAccuracy(accuracy float64) *SetGeolocationOverrideParams {
	p.Accuracy = accuracy
	return &p
}

// WithAltitude mock altitude.
func (p SetGeolocationOverrideParams) WithAltitude(altitude float64) *SetGeolocationOverrideParams {
	p.Altitude = altitude
	return &p
}

// WithAltitudeAccuracy mock altitudeAccuracy.
func (p SetGeolocationOverrideParams) WithAltitudeAccuracy(altitudeAccuracy float64) *SetGeolocationOverrideParams {
	p.AltitudeAccuracy = altitudeAccuracy
	return &p
}

// WithHeading mock heading.
func (p SetGeolocationOverrideParams) WithHeading(heading float64) *SetGeolocationOverrideParams {
	p.Heading = heading
	return &p
}

// WithSpeed mock speed.
func (p SetGeolocationOverrideParams) WithSpeed(speed float64) *SetGeolocationOverrideParams {
	p.Speed = speed
	return &p
}

// Do executes Emulation.setGeolocationOverride against the provided context.
func (p *SetGeolocationOverrideParams) Do(ctx context.Context) (err error) {
	return cdp.Execute(ctx, CommandSetGeolocationOverride, p, nil)
}

// GetOverriddenSensorInformationParams [no description].
type GetOverriddenSensorInformationParams struct {
	Type SensorType `json:"type"`
}

// GetOverriddenSensorInformation [no description].
//
// See: https://chromedevtools.github.io/devtools-protocol/tot/Emulation#method-getOverriddenSensorInformation
//
// parameters:
//
//	type
func GetOverriddenSensorInformation(typeVal SensorType) *GetOverriddenSensorInformationParams {
	return &GetOverriddenSensorInformationParams{
		Type: typeVal,
	}
}

// GetOverriddenSensorInformationReturns return values.
type GetOverriddenSensorInformationReturns struct {
	RequestedSamplingFrequency float64 `json:"requestedSamplingFrequency,omitempty,omitzero"`
}

// Do executes Emulation.getOverriddenSensorInformation against the provided context.
//
// returns:
//
//	requestedSamplingFrequency
func (p *GetOverriddenSensorInformationParams) Do(ctx context.Context) (requestedSamplingFrequency float64, err error) {
	// execute
	var res GetOverriddenSensorInformationReturns
	err = cdp.Execute(ctx, CommandGetOverriddenSensorInformation, p, &res)
	if err != nil {
		return 0, err
	}

	return res.RequestedSamplingFrequency, nil
}

// SetSensorOverrideEnabledParams overrides a platform sensor of a given
// type. If |enabled| is true, calls to Sensor.start() will use a virtual sensor
// as backend rather than fetching data from a real hardware sensor. Otherwise,
// existing virtual sensor-backend Sensor objects will fire an error event and
// new calls to Sensor.start() will attempt to use a real sensor instead.
type SetSensorOverrideEnabledParams struct {
	Enabled  bool            `json:"enabled"`
	Type     SensorType      `json:"type"`
	Metadata *SensorMetadata `json:"metadata,omitempty,omitzero"`
}

// SetSensorOverrideEnabled overrides a platform sensor of a given type. If
// |enabled| is true, calls to Sensor.start() will use a virtual sensor as
// backend rather than fetching data from a real hardware sensor. Otherwise,
// existing virtual sensor-backend Sensor objects will fire an error event and
// new calls to Sensor.start() will attempt to use a real sensor instead.
//
// See: https://chromedevtools.github.io/devtools-protocol/tot/Emulation#method-setSensorOverrideEnabled
//
// parameters:
//
//	enabled
//	type
func SetSensorOverrideEnabled(enabled bool, typeVal SensorType) *SetSensorOverrideEnabledParams {
	return &SetSensorOverrideEnabledParams{
		Enabled: enabled,
		Type:    typeVal,
	}
}

// WithMetadata [no description].
func (p SetSensorOverrideEnabledParams) WithMetadata(metadata *SensorMetadata) *SetSensorOverrideEnabledParams {
	p.Metadata = metadata
	return &p
}

// Do executes Emulation.setSensorOverrideEnabled against the provided context.
func (p *SetSensorOverrideEnabledParams) Do(ctx context.Context) (err error) {
	return cdp.Execute(ctx, CommandSetSensorOverrideEnabled, p, nil)
}

// SetSensorOverrideReadingsParams updates the sensor readings reported by a
// sensor type previously overridden by setSensorOverrideEnabled.
type SetSensorOverrideReadingsParams struct {
	Type    SensorType     `json:"type"`
	Reading *SensorReading `json:"reading"`
}

// SetSensorOverrideReadings updates the sensor readings reported by a sensor
// type previously overridden by setSensorOverrideEnabled.
//
// See: https://chromedevtools.github.io/devtools-protocol/tot/Emulation#method-setSensorOverrideReadings
//
// parameters:
//
//	type
//	reading
func SetSensorOverrideReadings(typeVal SensorType, reading *SensorReading) *SetSensorOverrideReadingsParams {
	return &SetSensorOverrideReadingsParams{
		Type:    typeVal,
		Reading: reading,
	}
}

// Do executes Emulation.setSensorOverrideReadings against the provided context.
func (p *SetSensorOverrideReadingsParams) Do(ctx context.Context) (err error) {
	return cdp.Execute(ctx, CommandSetSensorOverrideReadings, p, nil)
}

// SetPressureSourceOverrideEnabledParams overrides a pressure source of a
// given type, as used by the Compute Pressure API, so that updates to
// PressureObserver.observe() are provided via setPressureStateOverride instead
// of being retrieved from platform-provided telemetry data.
type SetPressureSourceOverrideEnabledParams struct {
	Enabled  bool              `json:"enabled"`
	Source   PressureSource    `json:"source"`
	Metadata *PressureMetadata `json:"metadata,omitempty,omitzero"`
}

// SetPressureSourceOverrideEnabled overrides a pressure source of a given
// type, as used by the Compute Pressure API, so that updates to
// PressureObserver.observe() are provided via setPressureStateOverride instead
// of being retrieved from platform-provided telemetry data.
//
// See: https://chromedevtools.github.io/devtools-protocol/tot/Emulation#method-setPressureSourceOverrideEnabled
//
// parameters:
//
//	enabled
//	source
func SetPressureSourceOverrideEnabled(enabled bool, source PressureSource) *SetPressureSourceOverrideEnabledParams {
	return &SetPressureSourceOverrideEnabledParams{
		Enabled: enabled,
		Source:  source,
	}
}

// WithMetadata [no description].
func (p SetPressureSourceOverrideEnabledParams) WithMetadata(metadata *PressureMetadata) *SetPressureSourceOverrideEnabledParams {
	p.Metadata = metadata
	return &p
}

// Do executes Emulation.setPressureSourceOverrideEnabled against the provided context.
func (p *SetPressureSourceOverrideEnabledParams) Do(ctx context.Context) (err error) {
	return cdp.Execute(ctx, CommandSetPressureSourceOverrideEnabled, p, nil)
}

// SetPressureStateOverrideParams tODO: OBSOLETE: To remove when
// setPressureDataOverride is merged. Provides a given pressure state that will
// be processed and eventually be delivered to PressureObserver users. |source|
// must have been previously overridden by setPressureSourceOverrideEnabled.
type SetPressureStateOverrideParams struct {
	Source PressureSource `json:"source"`
	State  PressureState  `json:"state"`
}

// SetPressureStateOverride tODO: OBSOLETE: To remove when
// setPressureDataOverride is merged. Provides a given pressure state that will
// be processed and eventually be delivered to PressureObserver users. |source|
// must have been previously overridden by setPressureSourceOverrideEnabled.
//
// See: https://chromedevtools.github.io/devtools-protocol/tot/Emulation#method-setPressureStateOverride
//
// parameters:
//
//	source
//	state
func SetPressureStateOverride(source PressureSource, state PressureState) *SetPressureStateOverrideParams {
	return &SetPressureStateOverrideParams{
		Source: source,
		State:  state,
	}
}

// Do executes Emulation.setPressureStateOverride against the provided context.
func (p *SetPressureStateOverrideParams) Do(ctx context.Context) (err error) {
	return cdp.Execute(ctx, CommandSetPressureStateOverride, p, nil)
}

// SetPressureDataOverrideParams provides a given pressure data set that will
// be processed and eventually be delivered to PressureObserver users. |source|
// must have been previously overridden by setPressureSourceOverrideEnabled.
type SetPressureDataOverrideParams struct {
	Source                  PressureSource `json:"source"`
	State                   PressureState  `json:"state"`
	OwnContributionEstimate float64        `json:"ownContributionEstimate,omitempty,omitzero"`
}

// SetPressureDataOverride provides a given pressure data set that will be
// processed and eventually be delivered to PressureObserver users. |source|
// must have been previously overridden by setPressureSourceOverrideEnabled.
//
// See: https://chromedevtools.github.io/devtools-protocol/tot/Emulation#method-setPressureDataOverride
//
// parameters:
//
//	source
//	state
func SetPressureDataOverride(source PressureSource, state PressureState) *SetPressureDataOverrideParams {
	return &SetPressureDataOverrideParams{
		Source: source,
		State:  state,
	}
}

// WithOwnContributionEstimate [no description].
func (p SetPressureDataOverrideParams) WithOwnContributionEstimate(ownContributionEstimate float64) *SetPressureDataOverrideParams {
	p.OwnContributionEstimate = ownContributionEstimate
	return &p
}

// Do executes Emulation.setPressureDataOverride against the provided context.
func (p *SetPressureDataOverrideParams) Do(ctx context.Context) (err error) {
	return cdp.Execute(ctx, CommandSetPressureDataOverride, p, nil)
}

// SetIdleOverrideParams overrides the Idle state.
type SetIdleOverrideParams struct {
	IsUserActive     bool `json:"isUserActive"`     // Mock isUserActive
	IsScreenUnlocked bool `json:"isScreenUnlocked"` // Mock isScreenUnlocked
}

// SetIdleOverride overrides the Idle state.
//
// See: https://chromedevtools.github.io/devtools-protocol/tot/Emulation#method-setIdleOverride
//
// parameters:
//
//	isUserActive - Mock isUserActive
//	isScreenUnlocked - Mock isScreenUnlocked
func SetIdleOverride(isUserActive bool, isScreenUnlocked bool) *SetIdleOverrideParams {
	return &SetIdleOverrideParams{
		IsUserActive:     isUserActive,
		IsScreenUnlocked: isScreenUnlocked,
	}
}

// Do executes Emulation.setIdleOverride against the provided context.
func (p *SetIdleOverrideParams) Do(ctx context.Context) (err error) {
	return cdp.Execute(ctx, CommandSetIdleOverride, p, nil)
}

// ClearIdleOverrideParams clears Idle state overrides.
type ClearIdleOverrideParams struct{}

// ClearIdleOverride clears Idle state overrides.
//
// See: https://chromedevtools.github.io/devtools-protocol/tot/Emulation#method-clearIdleOverride
func ClearIdleOverride() *ClearIdleOverrideParams {
	return &ClearIdleOverrideParams{}
}

// Do executes Emulation.clearIdleOverride against the provided context.
func (p *ClearIdleOverrideParams) Do(ctx context.Context) (err error) {
	return cdp.Execute(ctx, CommandClearIdleOverride, nil, nil)
}

// SetPageScaleFactorParams sets a specified page scale factor.
type SetPageScaleFactorParams struct {
	PageScaleFactor float64 `json:"pageScaleFactor"` // Page scale factor.
}

// SetPageScaleFactor sets a specified page scale factor.
//
// See: https://chromedevtools.github.io/devtools-protocol/tot/Emulation#method-setPageScaleFactor
//
// parameters:
//
//	pageScaleFactor - Page scale factor.
func SetPageScaleFactor(pageScaleFactor float64) *SetPageScaleFactorParams {
	return &SetPageScaleFactorParams{
		PageScaleFactor: pageScaleFactor,
	}
}

// Do executes Emulation.setPageScaleFactor against the provided context.
func (p *SetPageScaleFactorParams) Do(ctx context.Context) (err error) {
	return cdp.Execute(ctx, CommandSetPageScaleFactor, p, nil)
}

// SetScriptExecutionDisabledParams switches script execution in the page.
type SetScriptExecutionDisabledParams struct {
	Value bool `json:"value"` // Whether script execution should be disabled in the page.
}

// SetScriptExecutionDisabled switches script execution in the page.
//
// See: https://chromedevtools.github.io/devtools-protocol/tot/Emulation#method-setScriptExecutionDisabled
//
// parameters:
//
//	value - Whether script execution should be disabled in the page.
func SetScriptExecutionDisabled(value bool) *SetScriptExecutionDisabledParams {
	return &SetScriptExecutionDisabledParams{
		Value: value,
	}
}

// Do executes Emulation.setScriptExecutionDisabled against the provided context.
func (p *SetScriptExecutionDisabledParams) Do(ctx context.Context) (err error) {
	return cdp.Execute(ctx, CommandSetScriptExecutionDisabled, p, nil)
}

// SetTouchEmulationEnabledParams enables touch on platforms which do not
// support them.
type SetTouchEmulationEnabledParams struct {
	Enabled        bool  `json:"enabled"`                           // Whether the touch event emulation should be enabled.
	MaxTouchPoints int64 `json:"maxTouchPoints,omitempty,omitzero"` // Maximum touch points supported. Defaults to one.
}

// SetTouchEmulationEnabled enables touch on platforms which do not support
// them.
//
// See: https://chromedevtools.github.io/devtools-protocol/tot/Emulation#method-setTouchEmulationEnabled
//
// parameters:
//
//	enabled - Whether the touch event emulation should be enabled.
func SetTouchEmulationEnabled(enabled bool) *SetTouchEmulationEnabledParams {
	return &SetTouchEmulationEnabledParams{
		Enabled: enabled,
	}
}

// WithMaxTouchPoints maximum touch points supported. Defaults to one.
func (p SetTouchEmulationEnabledParams) WithMaxTouchPoints(maxTouchPoints int64) *SetTouchEmulationEnabledParams {
	p.MaxTouchPoints = maxTouchPoints
	return &p
}

// Do executes Emulation.setTouchEmulationEnabled against the provided context.
func (p *SetTouchEmulationEnabledParams) Do(ctx context.Context) (err error) {
	return cdp.Execute(ctx, CommandSetTouchEmulationEnabled, p, nil)
}

// SetVirtualTimePolicyParams turns on virtual time for all frames (replacing
// real-time with a synthetic time source) and sets the current virtual time
// policy. Note this supersedes any previous time budget.
type SetVirtualTimePolicyParams struct {
	Policy                            VirtualTimePolicy   `json:"policy"`
	Budget                            float64             `json:"budget,omitempty,omitzero"`                            // If set, after this many virtual milliseconds have elapsed virtual time will be paused and a virtualTimeBudgetExpired event is sent.
	MaxVirtualTimeTaskStarvationCount int64               `json:"maxVirtualTimeTaskStarvationCount,omitempty,omitzero"` // If set this specifies the maximum number of tasks that can be run before virtual is forced forwards to prevent deadlock.
	InitialVirtualTime                *cdp.TimeSinceEpoch `json:"initialVirtualTime,omitempty,omitzero"`                // If set, base::Time::Now will be overridden to initially return this value.
}

// SetVirtualTimePolicy turns on virtual time for all frames (replacing
// real-time with a synthetic time source) and sets the current virtual time
// policy. Note this supersedes any previous time budget.
//
// See: https://chromedevtools.github.io/devtools-protocol/tot/Emulation#method-setVirtualTimePolicy
//
// parameters:
//
//	policy
func SetVirtualTimePolicy(policy VirtualTimePolicy) *SetVirtualTimePolicyParams {
	return &SetVirtualTimePolicyParams{
		Policy: policy,
	}
}

// WithBudget if set, after this many virtual milliseconds have elapsed
// virtual time will be paused and a virtualTimeBudgetExpired event is sent.
func (p SetVirtualTimePolicyParams) WithBudget(budget float64) *SetVirtualTimePolicyParams {
	p.Budget = budget
	return &p
}

// WithMaxVirtualTimeTaskStarvationCount if set this specifies the maximum
// number of tasks that can be run before virtual is forced forwards to prevent
// deadlock.
func (p SetVirtualTimePolicyParams) WithMaxVirtualTimeTaskStarvationCount(maxVirtualTimeTaskStarvationCount int64) *SetVirtualTimePolicyParams {
	p.MaxVirtualTimeTaskStarvationCount = maxVirtualTimeTaskStarvationCount
	return &p
}

// WithInitialVirtualTime if set, base::Time::Now will be overridden to
// initially return this value.
func (p SetVirtualTimePolicyParams) WithInitialVirtualTime(initialVirtualTime *cdp.TimeSinceEpoch) *SetVirtualTimePolicyParams {
	p.InitialVirtualTime = initialVirtualTime
	return &p
}

// SetVirtualTimePolicyReturns return values.
type SetVirtualTimePolicyReturns struct {
	VirtualTimeTicksBase float64 `json:"virtualTimeTicksBase,omitempty,omitzero"` // Absolute timestamp at which virtual time was first enabled (up time in milliseconds).
}

// Do executes Emulation.setVirtualTimePolicy against the provided context.
//
// returns:
//
//	virtualTimeTicksBase - Absolute timestamp at which virtual time was first enabled (up time in milliseconds).
func (p *SetVirtualTimePolicyParams) Do(ctx context.Context) (virtualTimeTicksBase float64, err error) {
	// execute
	var res SetVirtualTimePolicyReturns
	err = cdp.Execute(ctx, CommandSetVirtualTimePolicy, p, &res)
	if err != nil {
		return 0, err
	}

	return res.VirtualTimeTicksBase, nil
}

// SetLocaleOverrideParams overrides default host system locale with the
// specified one.
type SetLocaleOverrideParams struct {
	Locale string `json:"locale,omitempty,omitzero"` // ICU style C locale (e.g. "en_US"). If not specified or empty, disables the override and restores default host system locale.
}

// SetLocaleOverride overrides default host system locale with the specified
// one.
//
// See: https://chromedevtools.github.io/devtools-protocol/tot/Emulation#method-setLocaleOverride
//
// parameters:
func SetLocaleOverride() *SetLocaleOverrideParams {
	return &SetLocaleOverrideParams{}
}

// WithLocale iCU style C locale (e.g. "en_US"). If not specified or empty,
// disables the override and restores default host system locale.
func (p SetLocaleOverrideParams) WithLocale(locale string) *SetLocaleOverrideParams {
	p.Locale = locale
	return &p
}

// Do executes Emulation.setLocaleOverride against the provided context.
func (p *SetLocaleOverrideParams) Do(ctx context.Context) (err error) {
	return cdp.Execute(ctx, CommandSetLocaleOverride, p, nil)
}

// SetTimezoneOverrideParams overrides default host system timezone with the
// specified one.
type SetTimezoneOverrideParams struct {
	TimezoneID string `json:"timezoneId"` // The timezone identifier. List of supported timezones: https://source.chromium.org/chromium/chromium/deps/icu.git/+/faee8bc70570192d82d2978a71e2a615788597d1:source/data/misc/metaZones.txt If empty, disables the override and restores default host system timezone.
}

// SetTimezoneOverride overrides default host system timezone with the
// specified one.
//
// See: https://chromedevtools.github.io/devtools-protocol/tot/Emulation#method-setTimezoneOverride
//
// parameters:
//
//	timezoneID - The timezone identifier. List of supported timezones: https://source.chromium.org/chromium/chromium/deps/icu.git/+/faee8bc70570192d82d2978a71e2a615788597d1:source/data/misc/metaZones.txt If empty, disables the override and restores default host system timezone.
func SetTimezoneOverride(timezoneID string) *SetTimezoneOverrideParams {
	return &SetTimezoneOverrideParams{
		TimezoneID: timezoneID,
	}
}

// Do executes Emulation.setTimezoneOverride against the provided context.
func (p *SetTimezoneOverrideParams) Do(ctx context.Context) (err error) {
	return cdp.Execute(ctx, CommandSetTimezoneOverride, p, nil)
}

// SetDisabledImageTypesParams [no description].
type SetDisabledImageTypesParams struct {
	ImageTypes []DisabledImageType `json:"imageTypes"` // Image types to disable.
}

// SetDisabledImageTypes [no description].
//
// See: https://chromedevtools.github.io/devtools-protocol/tot/Emulation#method-setDisabledImageTypes
//
// parameters:
//
//	imageTypes - Image types to disable.
func SetDisabledImageTypes(imageTypes []DisabledImageType) *SetDisabledImageTypesParams {
	return &SetDisabledImageTypesParams{
		ImageTypes: imageTypes,
	}
}

// Do executes Emulation.setDisabledImageTypes against the provided context.
func (p *SetDisabledImageTypesParams) Do(ctx context.Context) (err error) {
	return cdp.Execute(ctx, CommandSetDisabledImageTypes, p, nil)
}

// SetDataSaverOverrideParams override the value of
// navigator.connection.saveData.
type SetDataSaverOverrideParams struct {
	DataSaverEnabled bool `json:"dataSaverEnabled"` // Override value. Omitting the parameter disables the override.
}

// SetDataSaverOverride override the value of navigator.connection.saveData.
//
// See: https://chromedevtools.github.io/devtools-protocol/tot/Emulation#method-setDataSaverOverride
//
// parameters:
func SetDataSaverOverride() *SetDataSaverOverrideParams {
	return &SetDataSaverOverrideParams{
		DataSaverEnabled: false,
	}
}

// WithDataSaverEnabled override value. Omitting the parameter disables the
// override.
func (p SetDataSaverOverrideParams) WithDataSaverEnabled(dataSaverEnabled bool) *SetDataSaverOverrideParams {
	p.DataSaverEnabled = dataSaverEnabled
	return &p
}

// Do executes Emulation.setDataSaverOverride against the provided context.
func (p *SetDataSaverOverrideParams) Do(ctx context.Context) (err error) {
	return cdp.Execute(ctx, CommandSetDataSaverOverride, p, nil)
}

// SetHardwareConcurrencyOverrideParams [no description].
type SetHardwareConcurrencyOverrideParams struct {
	HardwareConcurrency int64 `json:"hardwareConcurrency"` // Hardware concurrency to report
}

// SetHardwareConcurrencyOverride [no description].
//
// See: https://chromedevtools.github.io/devtools-protocol/tot/Emulation#method-setHardwareConcurrencyOverride
//
// parameters:
//
//	hardwareConcurrency - Hardware concurrency to report
func SetHardwareConcurrencyOverride(hardwareConcurrency int64) *SetHardwareConcurrencyOverrideParams {
	return &SetHardwareConcurrencyOverrideParams{
		HardwareConcurrency: hardwareConcurrency,
	}
}

// Do executes Emulation.setHardwareConcurrencyOverride against the provided context.
func (p *SetHardwareConcurrencyOverrideParams) Do(ctx context.Context) (err error) {
	return cdp.Execute(ctx, CommandSetHardwareConcurrencyOverride, p, nil)
}

// SetUserAgentOverrideParams allows overriding user agent with the given
// string. userAgentMetadata must be set for Client Hint headers to be sent.
type SetUserAgentOverrideParams struct {
	UserAgent         string             `json:"userAgent"`                            // User agent to use.
	AcceptLanguage    string             `json:"acceptLanguage,omitempty,omitzero"`    // Browser language to emulate.
	Platform          string             `json:"platform,omitempty,omitzero"`          // The platform navigator.platform should return.
	UserAgentMetadata *UserAgentMetadata `json:"userAgentMetadata,omitempty,omitzero"` // To be sent in Sec-CH-UA-* headers and returned in navigator.userAgentData
}

// SetUserAgentOverride allows overriding user agent with the given string.
// userAgentMetadata must be set for Client Hint headers to be sent.
//
// See: https://chromedevtools.github.io/devtools-protocol/tot/Emulation#method-setUserAgentOverride
//
// parameters:
//
//	userAgent - User agent to use.
func SetUserAgentOverride(userAgent string) *SetUserAgentOverrideParams {
	return &SetUserAgentOverrideParams{
		UserAgent: userAgent,
	}
}

// WithAcceptLanguage browser language to emulate.
func (p SetUserAgentOverrideParams) WithAcceptLanguage(acceptLanguage string) *SetUserAgentOverrideParams {
	p.AcceptLanguage = acceptLanguage
	return &p
}

// WithPlatform the platform navigator.platform should return.
func (p SetUserAgentOverrideParams) WithPlatform(platform string) *SetUserAgentOverrideParams {
	p.Platform = platform
	return &p
}

// WithUserAgentMetadata to be sent in Sec-CH-UA-* headers and returned in
// navigator.userAgentData.
func (p SetUserAgentOverrideParams) WithUserAgentMetadata(userAgentMetadata *UserAgentMetadata) *SetUserAgentOverrideParams {
	p.UserAgentMetadata = userAgentMetadata
	return &p
}

// Do executes Emulation.setUserAgentOverride against the provided context.
func (p *SetUserAgentOverrideParams) Do(ctx context.Context) (err error) {
	return cdp.Execute(ctx, CommandSetUserAgentOverride, p, nil)
}

// SetAutomationOverrideParams allows overriding the automation flag.
type SetAutomationOverrideParams struct {
	Enabled bool `json:"enabled"` // Whether the override should be enabled.
}

// SetAutomationOverride allows overriding the automation flag.
//
// See: https://chromedevtools.github.io/devtools-protocol/tot/Emulation#method-setAutomationOverride
//
// parameters:
//
//	enabled - Whether the override should be enabled.
func SetAutomationOverride(enabled bool) *SetAutomationOverrideParams {
	return &SetAutomationOverrideParams{
		Enabled: enabled,
	}
}

// Do executes Emulation.setAutomationOverride against the provided context.
func (p *SetAutomationOverrideParams) Do(ctx context.Context) (err error) {
	return cdp.Execute(ctx, CommandSetAutomationOverride, p, nil)
}

// SetSmallViewportHeightDifferenceOverrideParams allows overriding the
// difference between the small and large viewport sizes, which determine the
// value of the svh and lvh unit, respectively. Only supported for top-level
// frames.
type SetSmallViewportHeightDifferenceOverrideParams struct {
	Difference int64 `json:"difference"` // This will cause an element of size 100svh to be difference pixels smaller than an element of size 100lvh.
}

// SetSmallViewportHeightDifferenceOverride allows overriding the difference
// between the small and large viewport sizes, which determine the value of the
// svh and lvh unit, respectively. Only supported for top-level frames.
//
// See: https://chromedevtools.github.io/devtools-protocol/tot/Emulation#method-setSmallViewportHeightDifferenceOverride
//
// parameters:
//
//	difference - This will cause an element of size 100svh to be difference pixels smaller than an element of size 100lvh.
func SetSmallViewportHeightDifferenceOverride(difference int64) *SetSmallViewportHeightDifferenceOverrideParams {
	return &SetSmallViewportHeightDifferenceOverrideParams{
		Difference: difference,
	}
}

// Do executes Emulation.setSmallViewportHeightDifferenceOverride against the provided context.
func (p *SetSmallViewportHeightDifferenceOverrideParams) Do(ctx context.Context) (err error) {
	return cdp.Execute(ctx, CommandSetSmallViewportHeightDifferenceOverride, p, nil)
}

// GetScreenInfosParams returns device's screen configuration. In headful
// mode, the physical screens configuration is returned, whereas in headless
// mode, a virtual headless screen configuration is provided instead.
type GetScreenInfosParams struct{}

// GetScreenInfos returns device's screen configuration. In headful mode, the
// physical screens configuration is returned, whereas in headless mode, a
// virtual headless screen configuration is provided instead.
//
// See: https://chromedevtools.github.io/devtools-protocol/tot/Emulation#method-getScreenInfos
func GetScreenInfos() *GetScreenInfosParams {
	return &GetScreenInfosParams{}
}

// GetScreenInfosReturns return values.
type GetScreenInfosReturns struct {
	ScreenInfos []*ScreenInfo `json:"screenInfos,omitempty,omitzero"`
}

// Do executes Emulation.getScreenInfos against the provided context.
//
// returns:
//
//	screenInfos
func (p *GetScreenInfosParams) Do(ctx context.Context) (screenInfos []*ScreenInfo, err error) {
	// execute
	var res GetScreenInfosReturns
	err = cdp.Execute(ctx, CommandGetScreenInfos, nil, &res)
	if err != nil {
		return nil, err
	}

	return res.ScreenInfos, nil
}

// AddScreenParams add a new screen to the device. Only supported in headless
// mode.
type AddScreenParams struct {
	Left             int64           `json:"left"`                                // Offset of the left edge of the screen in pixels.
	Top              int64           `json:"top"`                                 // Offset of the top edge of the screen in pixels.
	Width            int64           `json:"width"`                               // The width of the screen in pixels.
	Height           int64           `json:"height"`                              // The height of the screen in pixels.
	WorkAreaInsets   *WorkAreaInsets `json:"workAreaInsets,omitempty,omitzero"`   // Specifies the screen's work area. Default is entire screen.
	DevicePixelRatio float64         `json:"devicePixelRatio,omitempty,omitzero"` // Specifies the screen's device pixel ratio. Default is 1.
	Rotation         int64           `json:"rotation,omitempty,omitzero"`         // Specifies the screen's rotation angle. Available values are 0, 90, 180 and 270. Default is 0.
	ColorDepth       int64           `json:"colorDepth,omitempty,omitzero"`       // Specifies the screen's color depth in bits. Default is 24.
	Label            string          `json:"label,omitempty,omitzero"`            // Specifies the descriptive label for the screen. Default is none.
	IsInternal       bool            `json:"isInternal"`                          // Indicates whether the screen is internal to the device or external, attached to the device. Default is false.
}

// AddScreen add a new screen to the device. Only supported in headless mode.
//
// See: https://chromedevtools.github.io/devtools-protocol/tot/Emulation#method-addScreen
//
// parameters:
//
//	left - Offset of the left edge of the screen in pixels.
//	top - Offset of the top edge of the screen in pixels.
//	width - The width of the screen in pixels.
//	height - The height of the screen in pixels.
func AddScreen(left int64, top int64, width int64, height int64) *AddScreenParams {
	return &AddScreenParams{
		Left:       left,
		Top:        top,
		Width:      width,
		Height:     height,
		IsInternal: false,
	}
}

// WithWorkAreaInsets specifies the screen's work area. Default is entire
// screen.
func (p AddScreenParams) WithWorkAreaInsets(workAreaInsets *WorkAreaInsets) *AddScreenParams {
	p.WorkAreaInsets = workAreaInsets
	return &p
}

// WithDevicePixelRatio specifies the screen's device pixel ratio. Default is
// 1.
func (p AddScreenParams) WithDevicePixelRatio(devicePixelRatio float64) *AddScreenParams {
	p.DevicePixelRatio = devicePixelRatio
	return &p
}

// WithRotation specifies the screen's rotation angle. Available values are
// 0, 90, 180 and 270. Default is 0.
func (p AddScreenParams) WithRotation(rotation int64) *AddScreenParams {
	p.Rotation = rotation
	return &p
}

// WithColorDepth specifies the screen's color depth in bits. Default is 24.
func (p AddScreenParams) WithColorDepth(colorDepth int64) *AddScreenParams {
	p.ColorDepth = colorDepth
	return &p
}

// WithLabel specifies the descriptive label for the screen. Default is none.
func (p AddScreenParams) WithLabel(label string) *AddScreenParams {
	p.Label = label
	return &p
}

// WithIsInternal indicates whether the screen is internal to the device or
// external, attached to the device. Default is false.
func (p AddScreenParams) WithIsInternal(isInternal bool) *AddScreenParams {
	p.IsInternal = isInternal
	return &p
}

// AddScreenReturns return values.
type AddScreenReturns struct {
	ScreenInfo *ScreenInfo `json:"screenInfo,omitempty,omitzero"`
}

// Do executes Emulation.addScreen against the provided context.
//
// returns:
//
//	screenInfo
func (p *AddScreenParams) Do(ctx context.Context) (screenInfo *ScreenInfo, err error) {
	// execute
	var res AddScreenReturns
	err = cdp.Execute(ctx, CommandAddScreen, p, &res)
	if err != nil {
		return nil, err
	}

	return res.ScreenInfo, nil
}

// UpdateScreenParams updates specified screen parameters. Only supported in
// headless mode.
type UpdateScreenParams struct {
	ScreenID         ScreenID        `json:"screenId"`                            // Target screen identifier.
	Left             int64           `json:"left,omitempty,omitzero"`             // Offset of the left edge of the screen in pixels.
	Top              int64           `json:"top,omitempty,omitzero"`              // Offset of the top edge of the screen in pixels.
	Width            int64           `json:"width,omitempty,omitzero"`            // The width of the screen in pixels.
	Height           int64           `json:"height,omitempty,omitzero"`           // The height of the screen in pixels.
	WorkAreaInsets   *WorkAreaInsets `json:"workAreaInsets,omitempty,omitzero"`   // Specifies the screen's work area.
	DevicePixelRatio float64         `json:"devicePixelRatio,omitempty,omitzero"` // Specifies the screen's device pixel ratio.
	Rotation         int64           `json:"rotation,omitempty,omitzero"`         // Specifies the screen's rotation angle. Available values are 0, 90, 180 and 270.
	ColorDepth       int64           `json:"colorDepth,omitempty,omitzero"`       // Specifies the screen's color depth in bits.
	Label            string          `json:"label,omitempty,omitzero"`            // Specifies the descriptive label for the screen.
	IsInternal       bool            `json:"isInternal"`                          // Indicates whether the screen is internal to the device or external, attached to the device. Default is false.
}

// UpdateScreen updates specified screen parameters. Only supported in
// headless mode.
//
// See: https://chromedevtools.github.io/devtools-protocol/tot/Emulation#method-updateScreen
//
// parameters:
//
//	screenID - Target screen identifier.
func UpdateScreen(screenID ScreenID) *UpdateScreenParams {
	return &UpdateScreenParams{
		ScreenID:   screenID,
		IsInternal: false,
	}
}

// WithLeft offset of the left edge of the screen in pixels.
func (p UpdateScreenParams) WithLeft(left int64) *UpdateScreenParams {
	p.Left = left
	return &p
}

// WithTop offset of the top edge of the screen in pixels.
func (p UpdateScreenParams) WithTop(top int64) *UpdateScreenParams {
	p.Top = top
	return &p
}

// WithWidth the width of the screen in pixels.
func (p UpdateScreenParams) WithWidth(width int64) *UpdateScreenParams {
	p.Width = width
	return &p
}

// WithHeight the height of the screen in pixels.
func (p UpdateScreenParams) WithHeight(height int64) *UpdateScreenParams {
	p.Height = height
	return &p
}

// WithWorkAreaInsets specifies the screen's work area.
func (p UpdateScreenParams) WithWorkAreaInsets(workAreaInsets *WorkAreaInsets) *UpdateScreenParams {
	p.WorkAreaInsets = workAreaInsets
	return &p
}

// WithDevicePixelRatio specifies the screen's device pixel ratio.
func (p UpdateScreenParams) WithDevicePixelRatio(devicePixelRatio float64) *UpdateScreenParams {
	p.DevicePixelRatio = devicePixelRatio
	return &p
}

// WithRotation specifies the screen's rotation angle. Available values are
// 0, 90, 180 and 270.
func (p UpdateScreenParams) WithRotation(rotation int64) *UpdateScreenParams {
	p.Rotation = rotation
	return &p
}

// WithColorDepth specifies the screen's color depth in bits.
func (p UpdateScreenParams) WithColorDepth(colorDepth int64) *UpdateScreenParams {
	p.ColorDepth = colorDepth
	return &p
}

// WithLabel specifies the descriptive label for the screen.
func (p UpdateScreenParams) WithLabel(label string) *UpdateScreenParams {
	p.Label = label
	return &p
}

// WithIsInternal indicates whether the screen is internal to the device or
// external, attached to the device. Default is false.
func (p UpdateScreenParams) WithIsInternal(isInternal bool) *UpdateScreenParams {
	p.IsInternal = isInternal
	return &p
}

// UpdateScreenReturns return values.
type UpdateScreenReturns struct {
	ScreenInfo *ScreenInfo `json:"screenInfo,omitempty,omitzero"`
}

// Do executes Emulation.updateScreen against the provided context.
//
// returns:
//
//	screenInfo
func (p *UpdateScreenParams) Do(ctx context.Context) (screenInfo *ScreenInfo, err error) {
	// execute
	var res UpdateScreenReturns
	err = cdp.Execute(ctx, CommandUpdateScreen, p, &res)
	if err != nil {
		return nil, err
	}

	return res.ScreenInfo, nil
}

// RemoveScreenParams remove screen from the device. Only supported in
// headless mode.
type RemoveScreenParams struct {
	ScreenID ScreenID `json:"screenId"`
}

// RemoveScreen remove screen from the device. Only supported in headless
// mode.
//
// See: https://chromedevtools.github.io/devtools-protocol/tot/Emulation#method-removeScreen
//
// parameters:
//
//	screenID
func RemoveScreen(screenID ScreenID) *RemoveScreenParams {
	return &RemoveScreenParams{
		ScreenID: screenID,
	}
}

// Do executes Emulation.removeScreen against the provided context.
func (p *RemoveScreenParams) Do(ctx context.Context) (err error) {
	return cdp.Execute(ctx, CommandRemoveScreen, p, nil)
}

// SetPrimaryScreenParams set primary screen. Only supported in headless
// mode. Note that this changes the coordinate system origin to the top-left of
// the new primary screen, updating the bounds and work areas of all existing
// screens accordingly.
type SetPrimaryScreenParams struct {
	ScreenID ScreenID `json:"screenId"`
}

// SetPrimaryScreen set primary screen. Only supported in headless mode. Note
// that this changes the coordinate system origin to the top-left of the new
// primary screen, updating the bounds and work areas of all existing screens
// accordingly.
//
// See: https://chromedevtools.github.io/devtools-protocol/tot/Emulation#method-setPrimaryScreen
//
// parameters:
//
//	screenID
func SetPrimaryScreen(screenID ScreenID) *SetPrimaryScreenParams {
	return &SetPrimaryScreenParams{
		ScreenID: screenID,
	}
}

// Do executes Emulation.setPrimaryScreen against the provided context.
func (p *SetPrimaryScreenParams) Do(ctx context.Context) (err error) {
	return cdp.Execute(ctx, CommandSetPrimaryScreen, p, nil)
}

// Command names.
const (
	CommandClearDeviceMetricsOverride               = "Emulation.clearDeviceMetricsOverride"
	CommandClearGeolocationOverride                 = "Emulation.clearGeolocationOverride"
	CommandResetPageScaleFactor                     = "Emulation.resetPageScaleFactor"
	CommandSetFocusEmulationEnabled                 = "Emulation.setFocusEmulationEnabled"
	CommandSetAutoDarkModeOverride                  = "Emulation.setAutoDarkModeOverride"
	CommandSetCPUThrottlingRate                     = "Emulation.setCPUThrottlingRate"
	CommandSetDefaultBackgroundColorOverride        = "Emulation.setDefaultBackgroundColorOverride"
	CommandSetSafeAreaInsetsOverride                = "Emulation.setSafeAreaInsetsOverride"
	CommandSetDeviceMetricsOverride                 = "Emulation.setDeviceMetricsOverride"
	CommandSetDevicePostureOverride                 = "Emulation.setDevicePostureOverride"
	CommandClearDevicePostureOverride               = "Emulation.clearDevicePostureOverride"
	CommandSetDisplayFeaturesOverride               = "Emulation.setDisplayFeaturesOverride"
	CommandClearDisplayFeaturesOverride             = "Emulation.clearDisplayFeaturesOverride"
	CommandSetScrollbarsHidden                      = "Emulation.setScrollbarsHidden"
	CommandSetDocumentCookieDisabled                = "Emulation.setDocumentCookieDisabled"
	CommandSetEmitTouchEventsForMouse               = "Emulation.setEmitTouchEventsForMouse"
	CommandSetEmulatedMedia                         = "Emulation.setEmulatedMedia"
	CommandSetEmulatedVisionDeficiency              = "Emulation.setEmulatedVisionDeficiency"
	CommandSetEmulatedOSTextScale                   = "Emulation.setEmulatedOSTextScale"
	CommandSetGeolocationOverride                   = "Emulation.setGeolocationOverride"
	CommandGetOverriddenSensorInformation           = "Emulation.getOverriddenSensorInformation"
	CommandSetSensorOverrideEnabled                 = "Emulation.setSensorOverrideEnabled"
	CommandSetSensorOverrideReadings                = "Emulation.setSensorOverrideReadings"
	CommandSetPressureSourceOverrideEnabled         = "Emulation.setPressureSourceOverrideEnabled"
	CommandSetPressureStateOverride                 = "Emulation.setPressureStateOverride"
	CommandSetPressureDataOverride                  = "Emulation.setPressureDataOverride"
	CommandSetIdleOverride                          = "Emulation.setIdleOverride"
	CommandClearIdleOverride                        = "Emulation.clearIdleOverride"
	CommandSetPageScaleFactor                       = "Emulation.setPageScaleFactor"
	CommandSetScriptExecutionDisabled               = "Emulation.setScriptExecutionDisabled"
	CommandSetTouchEmulationEnabled                 = "Emulation.setTouchEmulationEnabled"
	CommandSetVirtualTimePolicy                     = "Emulation.setVirtualTimePolicy"
	CommandSetLocaleOverride                        = "Emulation.setLocaleOverride"
	CommandSetTimezoneOverride                      = "Emulation.setTimezoneOverride"
	CommandSetDisabledImageTypes                    = "Emulation.setDisabledImageTypes"
	CommandSetDataSaverOverride                     = "Emulation.setDataSaverOverride"
	CommandSetHardwareConcurrencyOverride           = "Emulation.setHardwareConcurrencyOverride"
	CommandSetUserAgentOverride                     = "Emulation.setUserAgentOverride"
	CommandSetAutomationOverride                    = "Emulation.setAutomationOverride"
	CommandSetSmallViewportHeightDifferenceOverride = "Emulation.setSmallViewportHeightDifferenceOverride"
	CommandGetScreenInfos                           = "Emulation.getScreenInfos"
	CommandAddScreen                                = "Emulation.addScreen"
	CommandUpdateScreen                             = "Emulation.updateScreen"
	CommandRemoveScreen                             = "Emulation.removeScreen"
	CommandSetPrimaryScreen                         = "Emulation.setPrimaryScreen"
)
