enginev1

package
v0.1.12 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Sep 19, 2026 License: MIT Imports: 9 Imported by: 0

Documentation

Index

Constants

View Source
const (
	EngineService_Ping_FullMethodName           = "/allwright.engine.v1.EngineService/Ping"
	EngineService_SurfaceSession_FullMethodName = "/allwright.engine.v1.EngineService/SurfaceSession"
	EngineService_ContextSession_FullMethodName = "/allwright.engine.v1.EngineService/ContextSession"
)

Variables

View Source
var (
	MobilePlatform_name = map[int32]string{
		0: "MOBILE_PLATFORM_UNSPECIFIED",
		1: "MOBILE_PLATFORM_ANDROID",
		2: "MOBILE_PLATFORM_IOS",
	}
	MobilePlatform_value = map[string]int32{
		"MOBILE_PLATFORM_UNSPECIFIED": 0,
		"MOBILE_PLATFORM_ANDROID":     1,
		"MOBILE_PLATFORM_IOS":         2,
	}
)

Enum value maps for MobilePlatform.

View Source
var (
	DeviceConnectionKind_name = map[int32]string{
		0: "DEVICE_CONNECTION_KIND_UNSPECIFIED",
		1: "DEVICE_CONNECTION_KIND_USB",
		2: "DEVICE_CONNECTION_KIND_EMULATOR",
		3: "DEVICE_CONNECTION_KIND_REMOTE_ADB",
	}
	DeviceConnectionKind_value = map[string]int32{
		"DEVICE_CONNECTION_KIND_UNSPECIFIED": 0,
		"DEVICE_CONNECTION_KIND_USB":         1,
		"DEVICE_CONNECTION_KIND_EMULATOR":    2,
		"DEVICE_CONNECTION_KIND_REMOTE_ADB":  3,
	}
)

Enum value maps for DeviceConnectionKind.

View Source
var (
	BrowserKind_name = map[int32]string{
		0: "BROWSER_KIND_UNSPECIFIED",
		1: "BROWSER_KIND_CHROMIUM",
		2: "BROWSER_KIND_FIREFOX",
	}
	BrowserKind_value = map[string]int32{
		"BROWSER_KIND_UNSPECIFIED": 0,
		"BROWSER_KIND_CHROMIUM":    1,
		"BROWSER_KIND_FIREFOX":     2,
	}
)

Enum value maps for BrowserKind.

View Source
var EngineService_ServiceDesc = grpc.ServiceDesc{
	ServiceName: "allwright.engine.v1.EngineService",
	HandlerType: (*EngineServiceServer)(nil),
	Methods: []grpc.MethodDesc{
		{
			MethodName: "Ping",
			Handler:    _EngineService_Ping_Handler,
		},
	},
	Streams: []grpc.StreamDesc{
		{
			StreamName:    "SurfaceSession",
			Handler:       _EngineService_SurfaceSession_Handler,
			ServerStreams: true,
			ClientStreams: true,
		},
		{
			StreamName:    "ContextSession",
			Handler:       _EngineService_ContextSession_Handler,
			ServerStreams: true,
			ClientStreams: true,
		},
	},
	Metadata: "engine/v1/engine.proto",
}

EngineService_ServiceDesc is the grpc.ServiceDesc for EngineService service. It's only intended for direct use with grpc.RegisterService, and not to be introspected or modified (even as a copy)

View Source
var File_core_v1_common_proto protoreflect.FileDescriptor
View Source
var File_core_v1_context_proto protoreflect.FileDescriptor
View Source
var File_core_v1_surface_proto protoreflect.FileDescriptor
View Source
var File_engine_v1_engine_proto protoreflect.FileDescriptor
View Source
var File_surfaces_mobile_v1_mobile_proto protoreflect.FileDescriptor
View Source
var File_surfaces_web_v1_web_proto protoreflect.FileDescriptor

Functions

func RegisterEngineServiceServer

func RegisterEngineServiceServer(s grpc.ServiceRegistrar, srv EngineServiceServer)

Types

type AccessibilitySnapshotCapturedEvent added in v0.1.1

type AccessibilitySnapshotCapturedEvent struct {
	Snapshot string `protobuf:"bytes,1,opt,name=snapshot,proto3" json:"snapshot,omitempty"`
	Format   string `protobuf:"bytes,2,opt,name=format,proto3" json:"format,omitempty"`
	// contains filtered or unexported fields
}

Both formats encode the same versioned, structured document.

func (*AccessibilitySnapshotCapturedEvent) Descriptor deprecated added in v0.1.1

func (*AccessibilitySnapshotCapturedEvent) Descriptor() ([]byte, []int)

Deprecated: Use AccessibilitySnapshotCapturedEvent.ProtoReflect.Descriptor instead.

func (*AccessibilitySnapshotCapturedEvent) GetFormat added in v0.1.1

func (*AccessibilitySnapshotCapturedEvent) GetSnapshot added in v0.1.1

func (x *AccessibilitySnapshotCapturedEvent) GetSnapshot() string

func (*AccessibilitySnapshotCapturedEvent) ProtoMessage added in v0.1.1

func (*AccessibilitySnapshotCapturedEvent) ProtoMessage()

func (*AccessibilitySnapshotCapturedEvent) ProtoReflect added in v0.1.1

func (*AccessibilitySnapshotCapturedEvent) Reset added in v0.1.1

func (*AccessibilitySnapshotCapturedEvent) String added in v0.1.1

type AccessibilitySnapshotCommand added in v0.1.1

type AccessibilitySnapshotCommand struct {

	// Empty mode defaults to default. AI assigns queryable references; reference storage is surface-owned.
	// Supported: default, ai, autoexpect, codegen.
	Mode         string               `protobuf:"bytes,3,opt,name=mode,proto3" json:"mode,omitempty"`
	Format       string               `protobuf:"bytes,1,opt,name=format,proto3" json:"format,omitempty"`
	RetryOptions *CommandRetryOptions `protobuf:"bytes,2,opt,name=retry_options,json=retryOptions,proto3,oneof" json:"retry_options,omitempty"`
	// contains filtered or unexported fields
}

Empty format defaults to JSON. Accepted values are "json" and "yaml".

func (*AccessibilitySnapshotCommand) Descriptor deprecated added in v0.1.1

func (*AccessibilitySnapshotCommand) Descriptor() ([]byte, []int)

Deprecated: Use AccessibilitySnapshotCommand.ProtoReflect.Descriptor instead.

func (*AccessibilitySnapshotCommand) GetFormat added in v0.1.1

func (x *AccessibilitySnapshotCommand) GetFormat() string

func (*AccessibilitySnapshotCommand) GetMode added in v0.1.2

func (x *AccessibilitySnapshotCommand) GetMode() string

func (*AccessibilitySnapshotCommand) GetRetryOptions added in v0.1.1

func (x *AccessibilitySnapshotCommand) GetRetryOptions() *CommandRetryOptions

func (*AccessibilitySnapshotCommand) ProtoMessage added in v0.1.1

func (*AccessibilitySnapshotCommand) ProtoMessage()

func (*AccessibilitySnapshotCommand) ProtoReflect added in v0.1.1

func (*AccessibilitySnapshotCommand) Reset added in v0.1.1

func (x *AccessibilitySnapshotCommand) Reset()

func (*AccessibilitySnapshotCommand) String added in v0.1.1

type AppLaunchedEvent added in v0.0.53

type AppLaunchedEvent struct {
	AppSessionId   string  `protobuf:"bytes,1,opt,name=app_session_id,json=appSessionId,proto3" json:"app_session_id,omitempty"`
	Note           string  `protobuf:"bytes,2,opt,name=note,proto3" json:"note,omitempty"`
	PackageName    *string `protobuf:"bytes,3,opt,name=package_name,json=packageName,proto3,oneof" json:"package_name,omitempty"`
	ActivityName   *string `protobuf:"bytes,4,opt,name=activity_name,json=activityName,proto3,oneof" json:"activity_name,omitempty"`
	WebviewContext *string `protobuf:"bytes,5,opt,name=webview_context,json=webviewContext,proto3,oneof" json:"webview_context,omitempty"`
	// contains filtered or unexported fields
}

func (*AppLaunchedEvent) Descriptor deprecated added in v0.0.53

func (*AppLaunchedEvent) Descriptor() ([]byte, []int)

Deprecated: Use AppLaunchedEvent.ProtoReflect.Descriptor instead.

func (*AppLaunchedEvent) GetActivityName added in v0.0.53

func (x *AppLaunchedEvent) GetActivityName() string

func (*AppLaunchedEvent) GetAppSessionId added in v0.0.53

func (x *AppLaunchedEvent) GetAppSessionId() string

func (*AppLaunchedEvent) GetNote added in v0.0.53

func (x *AppLaunchedEvent) GetNote() string

func (*AppLaunchedEvent) GetPackageName added in v0.0.53

func (x *AppLaunchedEvent) GetPackageName() string

func (*AppLaunchedEvent) GetWebviewContext added in v0.0.53

func (x *AppLaunchedEvent) GetWebviewContext() string

func (*AppLaunchedEvent) ProtoMessage added in v0.0.53

func (*AppLaunchedEvent) ProtoMessage()

func (*AppLaunchedEvent) ProtoReflect added in v0.0.53

func (x *AppLaunchedEvent) ProtoReflect() protoreflect.Message

func (*AppLaunchedEvent) Reset added in v0.0.53

func (x *AppLaunchedEvent) Reset()

func (*AppLaunchedEvent) String added in v0.0.53

func (x *AppLaunchedEvent) String() string

type BrowserKind added in v0.0.27

type BrowserKind int32
const (
	BrowserKind_BROWSER_KIND_UNSPECIFIED BrowserKind = 0
	BrowserKind_BROWSER_KIND_CHROMIUM    BrowserKind = 1
	BrowserKind_BROWSER_KIND_FIREFOX     BrowserKind = 2
)

func (BrowserKind) Descriptor added in v0.0.27

func (BrowserKind) Enum added in v0.0.27

func (x BrowserKind) Enum() *BrowserKind

func (BrowserKind) EnumDescriptor deprecated added in v0.0.27

func (BrowserKind) EnumDescriptor() ([]byte, []int)

Deprecated: Use BrowserKind.Descriptor instead.

func (BrowserKind) Number added in v0.0.27

func (x BrowserKind) Number() protoreflect.EnumNumber

func (BrowserKind) String added in v0.0.27

func (x BrowserKind) String() string

func (BrowserKind) Type added in v0.0.27

type BrowserLaunchedEvent added in v0.0.27

type BrowserLaunchedEvent struct {
	BrowserKind          BrowserKind `` /* 132-byte string literal not displayed */
	Browser              string      `protobuf:"bytes,2,opt,name=browser,proto3" json:"browser,omitempty"`
	Note                 string      `protobuf:"bytes,3,opt,name=note,proto3" json:"note,omitempty"`
	UserDataDir          string      `protobuf:"bytes,4,opt,name=user_data_dir,json=userDataDir,proto3" json:"user_data_dir,omitempty"`
	InitialPageSessionId string      `protobuf:"bytes,5,opt,name=initial_page_session_id,json=initialPageSessionId,proto3" json:"initial_page_session_id,omitempty"`
	// contains filtered or unexported fields
}

func (*BrowserLaunchedEvent) Descriptor deprecated added in v0.0.27

func (*BrowserLaunchedEvent) Descriptor() ([]byte, []int)

Deprecated: Use BrowserLaunchedEvent.ProtoReflect.Descriptor instead.

func (*BrowserLaunchedEvent) GetBrowser added in v0.0.27

func (x *BrowserLaunchedEvent) GetBrowser() string

func (*BrowserLaunchedEvent) GetBrowserKind added in v0.0.27

func (x *BrowserLaunchedEvent) GetBrowserKind() BrowserKind

func (*BrowserLaunchedEvent) GetInitialPageSessionId added in v0.0.53

func (x *BrowserLaunchedEvent) GetInitialPageSessionId() string

func (*BrowserLaunchedEvent) GetNote added in v0.0.27

func (x *BrowserLaunchedEvent) GetNote() string

func (*BrowserLaunchedEvent) GetUserDataDir added in v0.0.27

func (x *BrowserLaunchedEvent) GetUserDataDir() string

func (*BrowserLaunchedEvent) ProtoMessage added in v0.0.27

func (*BrowserLaunchedEvent) ProtoMessage()

func (*BrowserLaunchedEvent) ProtoReflect added in v0.0.27

func (x *BrowserLaunchedEvent) ProtoReflect() protoreflect.Message

func (*BrowserLaunchedEvent) Reset added in v0.0.27

func (x *BrowserLaunchedEvent) Reset()

func (*BrowserLaunchedEvent) String added in v0.0.27

func (x *BrowserLaunchedEvent) String() string

type ChromeLaunchedEvent

type ChromeLaunchedEvent struct {
	Browser              string `protobuf:"bytes,1,opt,name=browser,proto3" json:"browser,omitempty"`
	Note                 string `protobuf:"bytes,2,opt,name=note,proto3" json:"note,omitempty"`
	CdpWebsocketUrl      string `protobuf:"bytes,3,opt,name=cdp_websocket_url,json=cdpWebsocketUrl,proto3" json:"cdp_websocket_url,omitempty"`
	UserDataDir          string `protobuf:"bytes,4,opt,name=user_data_dir,json=userDataDir,proto3" json:"user_data_dir,omitempty"`
	InitialPageSessionId string `protobuf:"bytes,5,opt,name=initial_page_session_id,json=initialPageSessionId,proto3" json:"initial_page_session_id,omitempty"`
	// contains filtered or unexported fields
}

func (*ChromeLaunchedEvent) Descriptor deprecated

func (*ChromeLaunchedEvent) Descriptor() ([]byte, []int)

Deprecated: Use ChromeLaunchedEvent.ProtoReflect.Descriptor instead.

func (*ChromeLaunchedEvent) GetBrowser

func (x *ChromeLaunchedEvent) GetBrowser() string

func (*ChromeLaunchedEvent) GetCdpWebsocketUrl

func (x *ChromeLaunchedEvent) GetCdpWebsocketUrl() string

func (*ChromeLaunchedEvent) GetInitialPageSessionId added in v0.0.53

func (x *ChromeLaunchedEvent) GetInitialPageSessionId() string

func (*ChromeLaunchedEvent) GetNote

func (x *ChromeLaunchedEvent) GetNote() string

func (*ChromeLaunchedEvent) GetUserDataDir

func (x *ChromeLaunchedEvent) GetUserDataDir() string

func (*ChromeLaunchedEvent) ProtoMessage

func (*ChromeLaunchedEvent) ProtoMessage()

func (*ChromeLaunchedEvent) ProtoReflect

func (x *ChromeLaunchedEvent) ProtoReflect() protoreflect.Message

func (*ChromeLaunchedEvent) Reset

func (x *ChromeLaunchedEvent) Reset()

func (*ChromeLaunchedEvent) String

func (x *ChromeLaunchedEvent) String() string

type ChromiumBidiInjectionEvent

type ChromiumBidiInjectionEvent struct {
	Note            string `protobuf:"bytes,1,opt,name=note,proto3" json:"note,omitempty"`
	BidiSessionId   string `protobuf:"bytes,2,opt,name=bidi_session_id,json=bidiSessionId,proto3" json:"bidi_session_id,omitempty"`
	MapperTargetId  string `protobuf:"bytes,3,opt,name=mapper_target_id,json=mapperTargetId,proto3" json:"mapper_target_id,omitempty"`
	MapperSessionId string `protobuf:"bytes,4,opt,name=mapper_session_id,json=mapperSessionId,proto3" json:"mapper_session_id,omitempty"`
	PackageVersion  string `protobuf:"bytes,5,opt,name=package_version,json=packageVersion,proto3" json:"package_version,omitempty"`
	// contains filtered or unexported fields
}

func (*ChromiumBidiInjectionEvent) Descriptor deprecated

func (*ChromiumBidiInjectionEvent) Descriptor() ([]byte, []int)

Deprecated: Use ChromiumBidiInjectionEvent.ProtoReflect.Descriptor instead.

func (*ChromiumBidiInjectionEvent) GetBidiSessionId

func (x *ChromiumBidiInjectionEvent) GetBidiSessionId() string

func (*ChromiumBidiInjectionEvent) GetMapperSessionId

func (x *ChromiumBidiInjectionEvent) GetMapperSessionId() string

func (*ChromiumBidiInjectionEvent) GetMapperTargetId

func (x *ChromiumBidiInjectionEvent) GetMapperTargetId() string

func (*ChromiumBidiInjectionEvent) GetNote

func (x *ChromiumBidiInjectionEvent) GetNote() string

func (*ChromiumBidiInjectionEvent) GetPackageVersion

func (x *ChromiumBidiInjectionEvent) GetPackageVersion() string

func (*ChromiumBidiInjectionEvent) ProtoMessage

func (*ChromiumBidiInjectionEvent) ProtoMessage()

func (*ChromiumBidiInjectionEvent) ProtoReflect

func (*ChromiumBidiInjectionEvent) Reset

func (x *ChromiumBidiInjectionEvent) Reset()

func (*ChromiumBidiInjectionEvent) String

func (x *ChromiumBidiInjectionEvent) String() string

type ClickElementCommand

type ClickElementCommand struct {
	CssSelector  string               `protobuf:"bytes,1,opt,name=css_selector,json=cssSelector,proto3" json:"css_selector,omitempty"`
	RetryOptions *CommandRetryOptions `protobuf:"bytes,2,opt,name=retry_options,json=retryOptions,proto3,oneof" json:"retry_options,omitempty"`
	// contains filtered or unexported fields
}

func (*ClickElementCommand) Descriptor deprecated

func (*ClickElementCommand) Descriptor() ([]byte, []int)

Deprecated: Use ClickElementCommand.ProtoReflect.Descriptor instead.

func (*ClickElementCommand) GetCssSelector

func (x *ClickElementCommand) GetCssSelector() string

func (*ClickElementCommand) GetRetryOptions added in v0.0.3

func (x *ClickElementCommand) GetRetryOptions() *CommandRetryOptions

func (*ClickElementCommand) ProtoMessage

func (*ClickElementCommand) ProtoMessage()

func (*ClickElementCommand) ProtoReflect

func (x *ClickElementCommand) ProtoReflect() protoreflect.Message

func (*ClickElementCommand) Reset

func (x *ClickElementCommand) Reset()

func (*ClickElementCommand) String

func (x *ClickElementCommand) String() string

type CloseContextSessionCommand added in v0.0.53

type CloseContextSessionCommand struct {
	// contains filtered or unexported fields
}

func (*CloseContextSessionCommand) Descriptor deprecated added in v0.0.53

func (*CloseContextSessionCommand) Descriptor() ([]byte, []int)

Deprecated: Use CloseContextSessionCommand.ProtoReflect.Descriptor instead.

func (*CloseContextSessionCommand) ProtoMessage added in v0.0.53

func (*CloseContextSessionCommand) ProtoMessage()

func (*CloseContextSessionCommand) ProtoReflect added in v0.0.53

func (*CloseContextSessionCommand) Reset added in v0.0.53

func (x *CloseContextSessionCommand) Reset()

func (*CloseContextSessionCommand) String added in v0.0.53

func (x *CloseContextSessionCommand) String() string

type CloseSurfaceSessionCommand added in v0.0.53

type CloseSurfaceSessionCommand struct {
	// contains filtered or unexported fields
}

func (*CloseSurfaceSessionCommand) Descriptor deprecated added in v0.0.53

func (*CloseSurfaceSessionCommand) Descriptor() ([]byte, []int)

Deprecated: Use CloseSurfaceSessionCommand.ProtoReflect.Descriptor instead.

func (*CloseSurfaceSessionCommand) ProtoMessage added in v0.0.53

func (*CloseSurfaceSessionCommand) ProtoMessage()

func (*CloseSurfaceSessionCommand) ProtoReflect added in v0.0.53

func (*CloseSurfaceSessionCommand) Reset added in v0.0.53

func (x *CloseSurfaceSessionCommand) Reset()

func (*CloseSurfaceSessionCommand) String added in v0.0.53

func (x *CloseSurfaceSessionCommand) String() string

type CommandRetryOptions added in v0.0.3

type CommandRetryOptions struct {
	TimeoutMs       *uint32 `protobuf:"varint,1,opt,name=timeout_ms,json=timeoutMs,proto3,oneof" json:"timeout_ms,omitempty"`
	RetryIntervalMs *uint32 `protobuf:"varint,2,opt,name=retry_interval_ms,json=retryIntervalMs,proto3,oneof" json:"retry_interval_ms,omitempty"`
	// contains filtered or unexported fields
}

func (*CommandRetryOptions) Descriptor deprecated added in v0.0.3

func (*CommandRetryOptions) Descriptor() ([]byte, []int)

Deprecated: Use CommandRetryOptions.ProtoReflect.Descriptor instead.

func (*CommandRetryOptions) GetRetryIntervalMs added in v0.0.3

func (x *CommandRetryOptions) GetRetryIntervalMs() uint32

func (*CommandRetryOptions) GetTimeoutMs added in v0.0.3

func (x *CommandRetryOptions) GetTimeoutMs() uint32

func (*CommandRetryOptions) ProtoMessage added in v0.0.3

func (*CommandRetryOptions) ProtoMessage()

func (*CommandRetryOptions) ProtoReflect added in v0.0.3

func (x *CommandRetryOptions) ProtoReflect() protoreflect.Message

func (*CommandRetryOptions) Reset added in v0.0.3

func (x *CommandRetryOptions) Reset()

func (*CommandRetryOptions) String added in v0.0.3

func (x *CommandRetryOptions) String() string

type ConnectMobileCommand added in v0.0.53

type ConnectMobileCommand struct {
	Platform         MobilePlatform       `protobuf:"varint,1,opt,name=platform,proto3,enum=allwright.engine.v1.MobilePlatform" json:"platform,omitempty"`
	Device           *string              `protobuf:"bytes,2,opt,name=device,proto3,oneof" json:"device,omitempty"`
	AdbEndpoint      *string              `protobuf:"bytes,3,opt,name=adb_endpoint,json=adbEndpoint,proto3,oneof" json:"adb_endpoint,omitempty"`
	PreserveAppState bool                 `protobuf:"varint,4,opt,name=preserve_app_state,json=preserveAppState,proto3" json:"preserve_app_state,omitempty"`
	RetryOptions     *CommandRetryOptions `protobuf:"bytes,5,opt,name=retry_options,json=retryOptions,proto3,oneof" json:"retry_options,omitempty"`
	// contains filtered or unexported fields
}

func (*ConnectMobileCommand) Descriptor deprecated added in v0.0.53

func (*ConnectMobileCommand) Descriptor() ([]byte, []int)

Deprecated: Use ConnectMobileCommand.ProtoReflect.Descriptor instead.

func (*ConnectMobileCommand) GetAdbEndpoint added in v0.0.53

func (x *ConnectMobileCommand) GetAdbEndpoint() string

func (*ConnectMobileCommand) GetDevice added in v0.0.53

func (x *ConnectMobileCommand) GetDevice() string

func (*ConnectMobileCommand) GetPlatform added in v0.0.53

func (x *ConnectMobileCommand) GetPlatform() MobilePlatform

func (*ConnectMobileCommand) GetPreserveAppState added in v0.0.53

func (x *ConnectMobileCommand) GetPreserveAppState() bool

func (*ConnectMobileCommand) GetRetryOptions added in v0.0.53

func (x *ConnectMobileCommand) GetRetryOptions() *CommandRetryOptions

func (*ConnectMobileCommand) ProtoMessage added in v0.0.53

func (*ConnectMobileCommand) ProtoMessage()

func (*ConnectMobileCommand) ProtoReflect added in v0.0.53

func (x *ConnectMobileCommand) ProtoReflect() protoreflect.Message

func (*ConnectMobileCommand) Reset added in v0.0.53

func (x *ConnectMobileCommand) Reset()

func (*ConnectMobileCommand) String added in v0.0.53

func (x *ConnectMobileCommand) String() string

type ContextOpenedEvent added in v0.0.53

type ContextOpenedEvent struct {
	ContextSessionId string `protobuf:"bytes,1,opt,name=context_session_id,json=contextSessionId,proto3" json:"context_session_id,omitempty"`
	Note             string `protobuf:"bytes,2,opt,name=note,proto3" json:"note,omitempty"`
	// contains filtered or unexported fields
}

func (*ContextOpenedEvent) Descriptor deprecated added in v0.0.53

func (*ContextOpenedEvent) Descriptor() ([]byte, []int)

Deprecated: Use ContextOpenedEvent.ProtoReflect.Descriptor instead.

func (*ContextOpenedEvent) GetContextSessionId added in v0.0.53

func (x *ContextOpenedEvent) GetContextSessionId() string

func (*ContextOpenedEvent) GetNote added in v0.0.53

func (x *ContextOpenedEvent) GetNote() string

func (*ContextOpenedEvent) ProtoMessage added in v0.0.53

func (*ContextOpenedEvent) ProtoMessage()

func (*ContextOpenedEvent) ProtoReflect added in v0.0.53

func (x *ContextOpenedEvent) ProtoReflect() protoreflect.Message

func (*ContextOpenedEvent) Reset added in v0.0.53

func (x *ContextOpenedEvent) Reset()

func (*ContextOpenedEvent) String added in v0.0.53

func (x *ContextOpenedEvent) String() string

type ContextSessionAttachedEvent added in v0.0.53

type ContextSessionAttachedEvent struct {
	Note string `protobuf:"bytes,1,opt,name=note,proto3" json:"note,omitempty"`
	// contains filtered or unexported fields
}

func (*ContextSessionAttachedEvent) Descriptor deprecated added in v0.0.53

func (*ContextSessionAttachedEvent) Descriptor() ([]byte, []int)

Deprecated: Use ContextSessionAttachedEvent.ProtoReflect.Descriptor instead.

func (*ContextSessionAttachedEvent) GetNote added in v0.0.53

func (x *ContextSessionAttachedEvent) GetNote() string

func (*ContextSessionAttachedEvent) ProtoMessage added in v0.0.53

func (*ContextSessionAttachedEvent) ProtoMessage()

func (*ContextSessionAttachedEvent) ProtoReflect added in v0.0.53

func (*ContextSessionAttachedEvent) Reset added in v0.0.53

func (x *ContextSessionAttachedEvent) Reset()

func (*ContextSessionAttachedEvent) String added in v0.0.53

func (x *ContextSessionAttachedEvent) String() string

type ContextSessionClosedEvent added in v0.0.53

type ContextSessionClosedEvent struct {
	Reason string `protobuf:"bytes,1,opt,name=reason,proto3" json:"reason,omitempty"`
	// contains filtered or unexported fields
}

func (*ContextSessionClosedEvent) Descriptor deprecated added in v0.0.53

func (*ContextSessionClosedEvent) Descriptor() ([]byte, []int)

Deprecated: Use ContextSessionClosedEvent.ProtoReflect.Descriptor instead.

func (*ContextSessionClosedEvent) GetReason added in v0.0.53

func (x *ContextSessionClosedEvent) GetReason() string

func (*ContextSessionClosedEvent) ProtoMessage added in v0.0.53

func (*ContextSessionClosedEvent) ProtoMessage()

func (*ContextSessionClosedEvent) ProtoReflect added in v0.0.53

func (*ContextSessionClosedEvent) Reset added in v0.0.53

func (x *ContextSessionClosedEvent) Reset()

func (*ContextSessionClosedEvent) String added in v0.0.53

func (x *ContextSessionClosedEvent) String() string

type ContextSessionCommand added in v0.0.53

type ContextSessionCommand struct {
	SurfaceSessionId string `protobuf:"bytes,1,opt,name=surface_session_id,json=surfaceSessionId,proto3" json:"surface_session_id,omitempty"`
	ContextSessionId string `protobuf:"bytes,2,opt,name=context_session_id,json=contextSessionId,proto3" json:"context_session_id,omitempty"`
	// Types that are valid to be assigned to Command:
	//
	//	*ContextSessionCommand_Ping
	//	*ContextSessionCommand_Close
	//	*ContextSessionCommand_Navigate
	//	*ContextSessionCommand_ClickElement
	//	*ContextSessionCommand_CountElements
	//	*ContextSessionCommand_HighlightElements
	//	*ContextSessionCommand_FocusElement
	//	*ContextSessionCommand_FillElement
	//	*ContextSessionCommand_HoverElement
	//	*ContextSessionCommand_PressKey
	//	*ContextSessionCommand_GetTextContent
	//	*ContextSessionCommand_GetInnerText
	//	*ContextSessionCommand_WaitForSelector
	//	*ContextSessionCommand_Screenshot
	//	*ContextSessionCommand_AccessibilitySnapshot
	//	*ContextSessionCommand_RegisterHook
	//	*ContextSessionCommand_WaitForHook
	//	*ContextSessionCommand_SetFileChooserFiles
	//	*ContextSessionCommand_SaveDownload
	//	*ContextSessionCommand_UploadFileChunk
	//	*ContextSessionCommand_ReadFileChunk
	//	*ContextSessionCommand_SetMobileFileChooserFiles
	//	*ContextSessionCommand_SaveMobileDownload
	Command isContextSessionCommand_Command `protobuf_oneof:"command"`
	// contains filtered or unexported fields
}

func (*ContextSessionCommand) Descriptor deprecated added in v0.0.53

func (*ContextSessionCommand) Descriptor() ([]byte, []int)

Deprecated: Use ContextSessionCommand.ProtoReflect.Descriptor instead.

func (*ContextSessionCommand) GetAccessibilitySnapshot added in v0.1.1

func (x *ContextSessionCommand) GetAccessibilitySnapshot() *AccessibilitySnapshotCommand

func (*ContextSessionCommand) GetClickElement added in v0.0.53

func (x *ContextSessionCommand) GetClickElement() *ClickElementCommand

func (*ContextSessionCommand) GetClose added in v0.0.53

func (*ContextSessionCommand) GetCommand added in v0.0.53

func (x *ContextSessionCommand) GetCommand() isContextSessionCommand_Command

func (*ContextSessionCommand) GetContextSessionId added in v0.0.53

func (x *ContextSessionCommand) GetContextSessionId() string

func (*ContextSessionCommand) GetCountElements added in v0.0.53

func (x *ContextSessionCommand) GetCountElements() *CountElementsCommand

func (*ContextSessionCommand) GetFillElement added in v0.0.53

func (x *ContextSessionCommand) GetFillElement() *FillElementCommand

func (*ContextSessionCommand) GetFocusElement added in v0.0.53

func (x *ContextSessionCommand) GetFocusElement() *FocusElementCommand

func (*ContextSessionCommand) GetGetInnerText added in v0.0.53

func (x *ContextSessionCommand) GetGetInnerText() *GetInnerTextCommand

func (*ContextSessionCommand) GetGetTextContent added in v0.0.53

func (x *ContextSessionCommand) GetGetTextContent() *GetTextContentCommand

func (*ContextSessionCommand) GetHighlightElements added in v0.0.53

func (x *ContextSessionCommand) GetHighlightElements() *HighlightElementsCommand

func (*ContextSessionCommand) GetHoverElement added in v0.0.53

func (x *ContextSessionCommand) GetHoverElement() *HoverElementCommand

func (*ContextSessionCommand) GetNavigate added in v0.0.53

func (x *ContextSessionCommand) GetNavigate() *NavigatePageCommand

func (*ContextSessionCommand) GetPing added in v0.0.53

func (*ContextSessionCommand) GetPressKey added in v0.0.53

func (x *ContextSessionCommand) GetPressKey() *PressKeyCommand

func (*ContextSessionCommand) GetReadFileChunk added in v0.1.8

func (x *ContextSessionCommand) GetReadFileChunk() *ReadFileChunkCommand

func (*ContextSessionCommand) GetRegisterHook added in v0.1.6

func (x *ContextSessionCommand) GetRegisterHook() *RegisterHookCommand

func (*ContextSessionCommand) GetSaveDownload added in v0.1.7

func (x *ContextSessionCommand) GetSaveDownload() *SaveDownloadCommand

func (*ContextSessionCommand) GetSaveMobileDownload added in v0.1.8

func (x *ContextSessionCommand) GetSaveMobileDownload() *SaveMobileDownloadCommand

func (*ContextSessionCommand) GetScreenshot added in v0.0.54

func (x *ContextSessionCommand) GetScreenshot() *ScreenshotCommand

func (*ContextSessionCommand) GetSetFileChooserFiles added in v0.1.7

func (x *ContextSessionCommand) GetSetFileChooserFiles() *SetFileChooserFilesCommand

func (*ContextSessionCommand) GetSetMobileFileChooserFiles added in v0.1.8

func (x *ContextSessionCommand) GetSetMobileFileChooserFiles() *SetMobileFileChooserFilesCommand

func (*ContextSessionCommand) GetSurfaceSessionId added in v0.0.53

func (x *ContextSessionCommand) GetSurfaceSessionId() string

func (*ContextSessionCommand) GetUploadFileChunk added in v0.1.8

func (x *ContextSessionCommand) GetUploadFileChunk() *UploadFileChunkCommand

func (*ContextSessionCommand) GetWaitForHook added in v0.1.6

func (x *ContextSessionCommand) GetWaitForHook() *WaitForHookCommand

func (*ContextSessionCommand) GetWaitForSelector added in v0.0.53

func (x *ContextSessionCommand) GetWaitForSelector() *WaitForSelectorCommand

func (*ContextSessionCommand) ProtoMessage added in v0.0.53

func (*ContextSessionCommand) ProtoMessage()

func (*ContextSessionCommand) ProtoReflect added in v0.0.53

func (x *ContextSessionCommand) ProtoReflect() protoreflect.Message

func (*ContextSessionCommand) Reset added in v0.0.53

func (x *ContextSessionCommand) Reset()

func (*ContextSessionCommand) String added in v0.0.53

func (x *ContextSessionCommand) String() string

type ContextSessionCommand_AccessibilitySnapshot added in v0.1.1

type ContextSessionCommand_AccessibilitySnapshot struct {
	AccessibilitySnapshot *AccessibilitySnapshotCommand `protobuf:"bytes,17,opt,name=accessibility_snapshot,json=accessibilitySnapshot,proto3,oneof"`
}

type ContextSessionCommand_ClickElement added in v0.0.53

type ContextSessionCommand_ClickElement struct {
	ClickElement *ClickElementCommand `protobuf:"bytes,6,opt,name=click_element,json=clickElement,proto3,oneof"`
}

type ContextSessionCommand_Close added in v0.0.53

type ContextSessionCommand_Close struct {
	Close *CloseContextSessionCommand `protobuf:"bytes,4,opt,name=close,proto3,oneof"`
}

type ContextSessionCommand_CountElements added in v0.0.53

type ContextSessionCommand_CountElements struct {
	CountElements *CountElementsCommand `protobuf:"bytes,7,opt,name=count_elements,json=countElements,proto3,oneof"`
}

type ContextSessionCommand_FillElement added in v0.0.53

type ContextSessionCommand_FillElement struct {
	FillElement *FillElementCommand `protobuf:"bytes,10,opt,name=fill_element,json=fillElement,proto3,oneof"`
}

type ContextSessionCommand_FocusElement added in v0.0.53

type ContextSessionCommand_FocusElement struct {
	FocusElement *FocusElementCommand `protobuf:"bytes,9,opt,name=focus_element,json=focusElement,proto3,oneof"`
}

type ContextSessionCommand_GetInnerText added in v0.0.53

type ContextSessionCommand_GetInnerText struct {
	GetInnerText *GetInnerTextCommand `protobuf:"bytes,14,opt,name=get_inner_text,json=getInnerText,proto3,oneof"`
}

type ContextSessionCommand_GetTextContent added in v0.0.53

type ContextSessionCommand_GetTextContent struct {
	GetTextContent *GetTextContentCommand `protobuf:"bytes,13,opt,name=get_text_content,json=getTextContent,proto3,oneof"`
}

type ContextSessionCommand_HighlightElements added in v0.0.53

type ContextSessionCommand_HighlightElements struct {
	HighlightElements *HighlightElementsCommand `protobuf:"bytes,8,opt,name=highlight_elements,json=highlightElements,proto3,oneof"`
}

type ContextSessionCommand_HoverElement added in v0.0.53

type ContextSessionCommand_HoverElement struct {
	HoverElement *HoverElementCommand `protobuf:"bytes,11,opt,name=hover_element,json=hoverElement,proto3,oneof"`
}

type ContextSessionCommand_Navigate added in v0.0.53

type ContextSessionCommand_Navigate struct {
	Navigate *NavigatePageCommand `protobuf:"bytes,5,opt,name=navigate,proto3,oneof"`
}

type ContextSessionCommand_Ping added in v0.0.53

type ContextSessionCommand_Ping struct {
	Ping *ContextSessionPingCommand `protobuf:"bytes,3,opt,name=ping,proto3,oneof"`
}

type ContextSessionCommand_PressKey added in v0.0.53

type ContextSessionCommand_PressKey struct {
	PressKey *PressKeyCommand `protobuf:"bytes,12,opt,name=press_key,json=pressKey,proto3,oneof"`
}

type ContextSessionCommand_ReadFileChunk added in v0.1.8

type ContextSessionCommand_ReadFileChunk struct {
	ReadFileChunk *ReadFileChunkCommand `protobuf:"bytes,23,opt,name=read_file_chunk,json=readFileChunk,proto3,oneof"`
}

type ContextSessionCommand_RegisterHook added in v0.1.6

type ContextSessionCommand_RegisterHook struct {
	RegisterHook *RegisterHookCommand `protobuf:"bytes,18,opt,name=register_hook,json=registerHook,proto3,oneof"`
}

type ContextSessionCommand_SaveDownload added in v0.1.7

type ContextSessionCommand_SaveDownload struct {
	SaveDownload *SaveDownloadCommand `protobuf:"bytes,21,opt,name=save_download,json=saveDownload,proto3,oneof"`
}

type ContextSessionCommand_SaveMobileDownload added in v0.1.8

type ContextSessionCommand_SaveMobileDownload struct {
	SaveMobileDownload *SaveMobileDownloadCommand `protobuf:"bytes,25,opt,name=save_mobile_download,json=saveMobileDownload,proto3,oneof"`
}

type ContextSessionCommand_Screenshot added in v0.0.54

type ContextSessionCommand_Screenshot struct {
	Screenshot *ScreenshotCommand `protobuf:"bytes,16,opt,name=screenshot,proto3,oneof"`
}

type ContextSessionCommand_SetFileChooserFiles added in v0.1.7

type ContextSessionCommand_SetFileChooserFiles struct {
	SetFileChooserFiles *SetFileChooserFilesCommand `protobuf:"bytes,20,opt,name=set_file_chooser_files,json=setFileChooserFiles,proto3,oneof"`
}

type ContextSessionCommand_SetMobileFileChooserFiles added in v0.1.8

type ContextSessionCommand_SetMobileFileChooserFiles struct {
	SetMobileFileChooserFiles *SetMobileFileChooserFilesCommand `protobuf:"bytes,24,opt,name=set_mobile_file_chooser_files,json=setMobileFileChooserFiles,proto3,oneof"`
}

type ContextSessionCommand_UploadFileChunk added in v0.1.8

type ContextSessionCommand_UploadFileChunk struct {
	UploadFileChunk *UploadFileChunkCommand `protobuf:"bytes,22,opt,name=upload_file_chunk,json=uploadFileChunk,proto3,oneof"`
}

type ContextSessionCommand_WaitForHook added in v0.1.6

type ContextSessionCommand_WaitForHook struct {
	WaitForHook *WaitForHookCommand `protobuf:"bytes,19,opt,name=wait_for_hook,json=waitForHook,proto3,oneof"`
}

type ContextSessionCommand_WaitForSelector added in v0.0.53

type ContextSessionCommand_WaitForSelector struct {
	WaitForSelector *WaitForSelectorCommand `protobuf:"bytes,15,opt,name=wait_for_selector,json=waitForSelector,proto3,oneof"`
}

type ContextSessionErrorEvent added in v0.0.53

type ContextSessionErrorEvent struct {
	Message string `protobuf:"bytes,1,opt,name=message,proto3" json:"message,omitempty"`
	// contains filtered or unexported fields
}

func (*ContextSessionErrorEvent) Descriptor deprecated added in v0.0.53

func (*ContextSessionErrorEvent) Descriptor() ([]byte, []int)

Deprecated: Use ContextSessionErrorEvent.ProtoReflect.Descriptor instead.

func (*ContextSessionErrorEvent) GetMessage added in v0.0.53

func (x *ContextSessionErrorEvent) GetMessage() string

func (*ContextSessionErrorEvent) ProtoMessage added in v0.0.53

func (*ContextSessionErrorEvent) ProtoMessage()

func (*ContextSessionErrorEvent) ProtoReflect added in v0.0.53

func (x *ContextSessionErrorEvent) ProtoReflect() protoreflect.Message

func (*ContextSessionErrorEvent) Reset added in v0.0.53

func (x *ContextSessionErrorEvent) Reset()

func (*ContextSessionErrorEvent) String added in v0.0.53

func (x *ContextSessionErrorEvent) String() string

type ContextSessionEvent added in v0.0.53

type ContextSessionEvent struct {
	ContextSessionId string `protobuf:"bytes,1,opt,name=context_session_id,json=contextSessionId,proto3" json:"context_session_id,omitempty"`
	// Types that are valid to be assigned to Event:
	//
	//	*ContextSessionEvent_Attached
	//	*ContextSessionEvent_Pong
	//	*ContextSessionEvent_Closed
	//	*ContextSessionEvent_Error
	//	*ContextSessionEvent_Navigated
	//	*ContextSessionEvent_ChromiumBidiInjection
	//	*ContextSessionEvent_ElementClicked
	//	*ContextSessionEvent_ElementCounted
	//	*ContextSessionEvent_ElementsHighlighted
	//	*ContextSessionEvent_ElementFocused
	//	*ContextSessionEvent_ElementFilled
	//	*ContextSessionEvent_ElementHovered
	//	*ContextSessionEvent_KeyPressed
	//	*ContextSessionEvent_TextContentResolved
	//	*ContextSessionEvent_InnerTextResolved
	//	*ContextSessionEvent_SelectorWaitSatisfied
	//	*ContextSessionEvent_ScreenshotCaptured
	//	*ContextSessionEvent_AccessibilitySnapshotCaptured
	//	*ContextSessionEvent_HookRegistered
	//	*ContextSessionEvent_HookCompleted
	//	*ContextSessionEvent_FileChooserFilesSet
	//	*ContextSessionEvent_DownloadSaved
	//	*ContextSessionEvent_FileUploaded
	//	*ContextSessionEvent_FileChunk
	//	*ContextSessionEvent_MobileFileChooserFilesSet
	//	*ContextSessionEvent_MobileDownloadSaved
	Event isContextSessionEvent_Event `protobuf_oneof:"event"`
	// contains filtered or unexported fields
}

func (*ContextSessionEvent) Descriptor deprecated added in v0.0.53

func (*ContextSessionEvent) Descriptor() ([]byte, []int)

Deprecated: Use ContextSessionEvent.ProtoReflect.Descriptor instead.

func (*ContextSessionEvent) GetAccessibilitySnapshotCaptured added in v0.1.1

func (x *ContextSessionEvent) GetAccessibilitySnapshotCaptured() *AccessibilitySnapshotCapturedEvent

func (*ContextSessionEvent) GetAttached added in v0.0.53

func (*ContextSessionEvent) GetChromiumBidiInjection added in v0.0.53

func (x *ContextSessionEvent) GetChromiumBidiInjection() *ChromiumBidiInjectionEvent

func (*ContextSessionEvent) GetClosed added in v0.0.53

func (*ContextSessionEvent) GetContextSessionId added in v0.0.53

func (x *ContextSessionEvent) GetContextSessionId() string

func (*ContextSessionEvent) GetDownloadSaved added in v0.1.7

func (x *ContextSessionEvent) GetDownloadSaved() *DownloadSavedEvent

func (*ContextSessionEvent) GetElementClicked added in v0.0.53

func (x *ContextSessionEvent) GetElementClicked() *ElementClickedEvent

func (*ContextSessionEvent) GetElementCounted added in v0.0.53

func (x *ContextSessionEvent) GetElementCounted() *ElementCountedEvent

func (*ContextSessionEvent) GetElementFilled added in v0.0.53

func (x *ContextSessionEvent) GetElementFilled() *ElementFilledEvent

func (*ContextSessionEvent) GetElementFocused added in v0.0.53

func (x *ContextSessionEvent) GetElementFocused() *ElementFocusedEvent

func (*ContextSessionEvent) GetElementHovered added in v0.0.53

func (x *ContextSessionEvent) GetElementHovered() *ElementHoveredEvent

func (*ContextSessionEvent) GetElementsHighlighted added in v0.0.53

func (x *ContextSessionEvent) GetElementsHighlighted() *ElementsHighlightedEvent

func (*ContextSessionEvent) GetError added in v0.0.53

func (*ContextSessionEvent) GetEvent added in v0.0.53

func (x *ContextSessionEvent) GetEvent() isContextSessionEvent_Event

func (*ContextSessionEvent) GetFileChooserFilesSet added in v0.1.7

func (x *ContextSessionEvent) GetFileChooserFilesSet() *FileChooserFilesSetEvent

func (*ContextSessionEvent) GetFileChunk added in v0.1.8

func (x *ContextSessionEvent) GetFileChunk() *FileChunkEvent

func (*ContextSessionEvent) GetFileUploaded added in v0.1.8

func (x *ContextSessionEvent) GetFileUploaded() *FileUploadedEvent

func (*ContextSessionEvent) GetHookCompleted added in v0.1.6

func (x *ContextSessionEvent) GetHookCompleted() *HookCompletedEvent

func (*ContextSessionEvent) GetHookRegistered added in v0.1.6

func (x *ContextSessionEvent) GetHookRegistered() *HookRegisteredEvent

func (*ContextSessionEvent) GetInnerTextResolved added in v0.0.53

func (x *ContextSessionEvent) GetInnerTextResolved() *InnerTextResolvedEvent

func (*ContextSessionEvent) GetKeyPressed added in v0.0.53

func (x *ContextSessionEvent) GetKeyPressed() *KeyPressedEvent

func (*ContextSessionEvent) GetMobileDownloadSaved added in v0.1.8

func (x *ContextSessionEvent) GetMobileDownloadSaved() *MobileDownloadSavedEvent

func (*ContextSessionEvent) GetMobileFileChooserFilesSet added in v0.1.8

func (x *ContextSessionEvent) GetMobileFileChooserFilesSet() *MobileFileChooserFilesSetEvent

func (*ContextSessionEvent) GetNavigated added in v0.0.53

func (x *ContextSessionEvent) GetNavigated() *PageNavigatedEvent

func (*ContextSessionEvent) GetPong added in v0.0.53

func (*ContextSessionEvent) GetScreenshotCaptured added in v0.0.54

func (x *ContextSessionEvent) GetScreenshotCaptured() *ScreenshotCapturedEvent

func (*ContextSessionEvent) GetSelectorWaitSatisfied added in v0.0.53

func (x *ContextSessionEvent) GetSelectorWaitSatisfied() *SelectorWaitSatisfiedEvent

func (*ContextSessionEvent) GetTextContentResolved added in v0.0.53

func (x *ContextSessionEvent) GetTextContentResolved() *TextContentResolvedEvent

func (*ContextSessionEvent) ProtoMessage added in v0.0.53

func (*ContextSessionEvent) ProtoMessage()

func (*ContextSessionEvent) ProtoReflect added in v0.0.53

func (x *ContextSessionEvent) ProtoReflect() protoreflect.Message

func (*ContextSessionEvent) Reset added in v0.0.53

func (x *ContextSessionEvent) Reset()

func (*ContextSessionEvent) String added in v0.0.53

func (x *ContextSessionEvent) String() string

type ContextSessionEvent_AccessibilitySnapshotCaptured added in v0.1.1

type ContextSessionEvent_AccessibilitySnapshotCaptured struct {
	AccessibilitySnapshotCaptured *AccessibilitySnapshotCapturedEvent `protobuf:"bytes,19,opt,name=accessibility_snapshot_captured,json=accessibilitySnapshotCaptured,proto3,oneof"`
}

type ContextSessionEvent_Attached added in v0.0.53

type ContextSessionEvent_Attached struct {
	Attached *ContextSessionAttachedEvent `protobuf:"bytes,2,opt,name=attached,proto3,oneof"`
}

type ContextSessionEvent_ChromiumBidiInjection added in v0.0.53

type ContextSessionEvent_ChromiumBidiInjection struct {
	ChromiumBidiInjection *ChromiumBidiInjectionEvent `protobuf:"bytes,7,opt,name=chromium_bidi_injection,json=chromiumBidiInjection,proto3,oneof"`
}

type ContextSessionEvent_Closed added in v0.0.53

type ContextSessionEvent_Closed struct {
	Closed *ContextSessionClosedEvent `protobuf:"bytes,4,opt,name=closed,proto3,oneof"`
}

type ContextSessionEvent_DownloadSaved added in v0.1.7

type ContextSessionEvent_DownloadSaved struct {
	DownloadSaved *DownloadSavedEvent `protobuf:"bytes,23,opt,name=download_saved,json=downloadSaved,proto3,oneof"`
}

type ContextSessionEvent_ElementClicked added in v0.0.53

type ContextSessionEvent_ElementClicked struct {
	ElementClicked *ElementClickedEvent `protobuf:"bytes,8,opt,name=element_clicked,json=elementClicked,proto3,oneof"`
}

type ContextSessionEvent_ElementCounted added in v0.0.53

type ContextSessionEvent_ElementCounted struct {
	ElementCounted *ElementCountedEvent `protobuf:"bytes,9,opt,name=element_counted,json=elementCounted,proto3,oneof"`
}

type ContextSessionEvent_ElementFilled added in v0.0.53

type ContextSessionEvent_ElementFilled struct {
	ElementFilled *ElementFilledEvent `protobuf:"bytes,12,opt,name=element_filled,json=elementFilled,proto3,oneof"`
}

type ContextSessionEvent_ElementFocused added in v0.0.53

type ContextSessionEvent_ElementFocused struct {
	ElementFocused *ElementFocusedEvent `protobuf:"bytes,11,opt,name=element_focused,json=elementFocused,proto3,oneof"`
}

type ContextSessionEvent_ElementHovered added in v0.0.53

type ContextSessionEvent_ElementHovered struct {
	ElementHovered *ElementHoveredEvent `protobuf:"bytes,13,opt,name=element_hovered,json=elementHovered,proto3,oneof"`
}

type ContextSessionEvent_ElementsHighlighted added in v0.0.53

type ContextSessionEvent_ElementsHighlighted struct {
	ElementsHighlighted *ElementsHighlightedEvent `protobuf:"bytes,10,opt,name=elements_highlighted,json=elementsHighlighted,proto3,oneof"`
}

type ContextSessionEvent_Error added in v0.0.53

type ContextSessionEvent_Error struct {
	Error *ContextSessionErrorEvent `protobuf:"bytes,5,opt,name=error,proto3,oneof"`
}

type ContextSessionEvent_FileChooserFilesSet added in v0.1.7

type ContextSessionEvent_FileChooserFilesSet struct {
	FileChooserFilesSet *FileChooserFilesSetEvent `protobuf:"bytes,22,opt,name=file_chooser_files_set,json=fileChooserFilesSet,proto3,oneof"`
}

type ContextSessionEvent_FileChunk added in v0.1.8

type ContextSessionEvent_FileChunk struct {
	FileChunk *FileChunkEvent `protobuf:"bytes,25,opt,name=file_chunk,json=fileChunk,proto3,oneof"`
}

type ContextSessionEvent_FileUploaded added in v0.1.8

type ContextSessionEvent_FileUploaded struct {
	FileUploaded *FileUploadedEvent `protobuf:"bytes,24,opt,name=file_uploaded,json=fileUploaded,proto3,oneof"`
}

type ContextSessionEvent_HookCompleted added in v0.1.6

type ContextSessionEvent_HookCompleted struct {
	HookCompleted *HookCompletedEvent `protobuf:"bytes,21,opt,name=hook_completed,json=hookCompleted,proto3,oneof"`
}

type ContextSessionEvent_HookRegistered added in v0.1.6

type ContextSessionEvent_HookRegistered struct {
	HookRegistered *HookRegisteredEvent `protobuf:"bytes,20,opt,name=hook_registered,json=hookRegistered,proto3,oneof"`
}

type ContextSessionEvent_InnerTextResolved added in v0.0.53

type ContextSessionEvent_InnerTextResolved struct {
	InnerTextResolved *InnerTextResolvedEvent `protobuf:"bytes,16,opt,name=inner_text_resolved,json=innerTextResolved,proto3,oneof"`
}

type ContextSessionEvent_KeyPressed added in v0.0.53

type ContextSessionEvent_KeyPressed struct {
	KeyPressed *KeyPressedEvent `protobuf:"bytes,14,opt,name=key_pressed,json=keyPressed,proto3,oneof"`
}

type ContextSessionEvent_MobileDownloadSaved added in v0.1.8

type ContextSessionEvent_MobileDownloadSaved struct {
	MobileDownloadSaved *MobileDownloadSavedEvent `protobuf:"bytes,27,opt,name=mobile_download_saved,json=mobileDownloadSaved,proto3,oneof"`
}

type ContextSessionEvent_MobileFileChooserFilesSet added in v0.1.8

type ContextSessionEvent_MobileFileChooserFilesSet struct {
	MobileFileChooserFilesSet *MobileFileChooserFilesSetEvent `protobuf:"bytes,26,opt,name=mobile_file_chooser_files_set,json=mobileFileChooserFilesSet,proto3,oneof"`
}

type ContextSessionEvent_Navigated added in v0.0.53

type ContextSessionEvent_Navigated struct {
	Navigated *PageNavigatedEvent `protobuf:"bytes,6,opt,name=navigated,proto3,oneof"`
}

type ContextSessionEvent_Pong added in v0.0.53

type ContextSessionEvent_Pong struct {
	Pong *ContextSessionPongEvent `protobuf:"bytes,3,opt,name=pong,proto3,oneof"`
}

type ContextSessionEvent_ScreenshotCaptured added in v0.0.54

type ContextSessionEvent_ScreenshotCaptured struct {
	ScreenshotCaptured *ScreenshotCapturedEvent `protobuf:"bytes,18,opt,name=screenshot_captured,json=screenshotCaptured,proto3,oneof"`
}

type ContextSessionEvent_SelectorWaitSatisfied added in v0.0.53

type ContextSessionEvent_SelectorWaitSatisfied struct {
	SelectorWaitSatisfied *SelectorWaitSatisfiedEvent `protobuf:"bytes,17,opt,name=selector_wait_satisfied,json=selectorWaitSatisfied,proto3,oneof"`
}

type ContextSessionEvent_TextContentResolved added in v0.0.53

type ContextSessionEvent_TextContentResolved struct {
	TextContentResolved *TextContentResolvedEvent `protobuf:"bytes,15,opt,name=text_content_resolved,json=textContentResolved,proto3,oneof"`
}

type ContextSessionPingCommand added in v0.0.53

type ContextSessionPingCommand struct {
	Message string `protobuf:"bytes,1,opt,name=message,proto3" json:"message,omitempty"`
	// contains filtered or unexported fields
}

func (*ContextSessionPingCommand) Descriptor deprecated added in v0.0.53

func (*ContextSessionPingCommand) Descriptor() ([]byte, []int)

Deprecated: Use ContextSessionPingCommand.ProtoReflect.Descriptor instead.

func (*ContextSessionPingCommand) GetMessage added in v0.0.53

func (x *ContextSessionPingCommand) GetMessage() string

func (*ContextSessionPingCommand) ProtoMessage added in v0.0.53

func (*ContextSessionPingCommand) ProtoMessage()

func (*ContextSessionPingCommand) ProtoReflect added in v0.0.53

func (*ContextSessionPingCommand) Reset added in v0.0.53

func (x *ContextSessionPingCommand) Reset()

func (*ContextSessionPingCommand) String added in v0.0.53

func (x *ContextSessionPingCommand) String() string

type ContextSessionPongEvent added in v0.0.53

type ContextSessionPongEvent struct {
	Message string `protobuf:"bytes,1,opt,name=message,proto3" json:"message,omitempty"`
	// contains filtered or unexported fields
}

func (*ContextSessionPongEvent) Descriptor deprecated added in v0.0.53

func (*ContextSessionPongEvent) Descriptor() ([]byte, []int)

Deprecated: Use ContextSessionPongEvent.ProtoReflect.Descriptor instead.

func (*ContextSessionPongEvent) GetMessage added in v0.0.53

func (x *ContextSessionPongEvent) GetMessage() string

func (*ContextSessionPongEvent) ProtoMessage added in v0.0.53

func (*ContextSessionPongEvent) ProtoMessage()

func (*ContextSessionPongEvent) ProtoReflect added in v0.0.53

func (x *ContextSessionPongEvent) ProtoReflect() protoreflect.Message

func (*ContextSessionPongEvent) Reset added in v0.0.53

func (x *ContextSessionPongEvent) Reset()

func (*ContextSessionPongEvent) String added in v0.0.53

func (x *ContextSessionPongEvent) String() string

type CountElementsCommand added in v0.0.3

type CountElementsCommand struct {
	CssSelector  string               `protobuf:"bytes,1,opt,name=css_selector,json=cssSelector,proto3" json:"css_selector,omitempty"`
	RetryOptions *CommandRetryOptions `protobuf:"bytes,2,opt,name=retry_options,json=retryOptions,proto3,oneof" json:"retry_options,omitempty"`
	// contains filtered or unexported fields
}

func (*CountElementsCommand) Descriptor deprecated added in v0.0.3

func (*CountElementsCommand) Descriptor() ([]byte, []int)

Deprecated: Use CountElementsCommand.ProtoReflect.Descriptor instead.

func (*CountElementsCommand) GetCssSelector added in v0.0.3

func (x *CountElementsCommand) GetCssSelector() string

func (*CountElementsCommand) GetRetryOptions added in v0.0.3

func (x *CountElementsCommand) GetRetryOptions() *CommandRetryOptions

func (*CountElementsCommand) ProtoMessage added in v0.0.3

func (*CountElementsCommand) ProtoMessage()

func (*CountElementsCommand) ProtoReflect added in v0.0.3

func (x *CountElementsCommand) ProtoReflect() protoreflect.Message

func (*CountElementsCommand) Reset added in v0.0.3

func (x *CountElementsCommand) Reset()

func (*CountElementsCommand) String added in v0.0.3

func (x *CountElementsCommand) String() string

type DeviceConnectionKind added in v0.0.53

type DeviceConnectionKind int32
const (
	DeviceConnectionKind_DEVICE_CONNECTION_KIND_UNSPECIFIED DeviceConnectionKind = 0
	DeviceConnectionKind_DEVICE_CONNECTION_KIND_USB         DeviceConnectionKind = 1
	DeviceConnectionKind_DEVICE_CONNECTION_KIND_EMULATOR    DeviceConnectionKind = 2
	DeviceConnectionKind_DEVICE_CONNECTION_KIND_REMOTE_ADB  DeviceConnectionKind = 3
)

func (DeviceConnectionKind) Descriptor added in v0.0.53

func (DeviceConnectionKind) Enum added in v0.0.53

func (DeviceConnectionKind) EnumDescriptor deprecated added in v0.0.53

func (DeviceConnectionKind) EnumDescriptor() ([]byte, []int)

Deprecated: Use DeviceConnectionKind.Descriptor instead.

func (DeviceConnectionKind) Number added in v0.0.53

func (DeviceConnectionKind) String added in v0.0.53

func (x DeviceConnectionKind) String() string

func (DeviceConnectionKind) Type added in v0.0.53

type DownloadHookResult added in v0.1.7

type DownloadHookResult struct {
	DownloadId        string `protobuf:"bytes,1,opt,name=download_id,json=downloadId,proto3" json:"download_id,omitempty"`
	Url               string `protobuf:"bytes,2,opt,name=url,proto3" json:"url,omitempty"`
	SuggestedFilename string `protobuf:"bytes,3,opt,name=suggested_filename,json=suggestedFilename,proto3" json:"suggested_filename,omitempty"`
	Note              string `protobuf:"bytes,4,opt,name=note,proto3" json:"note,omitempty"`
	// contains filtered or unexported fields
}

func (*DownloadHookResult) Descriptor deprecated added in v0.1.7

func (*DownloadHookResult) Descriptor() ([]byte, []int)

Deprecated: Use DownloadHookResult.ProtoReflect.Descriptor instead.

func (*DownloadHookResult) GetDownloadId added in v0.1.7

func (x *DownloadHookResult) GetDownloadId() string

func (*DownloadHookResult) GetNote added in v0.1.7

func (x *DownloadHookResult) GetNote() string

func (*DownloadHookResult) GetSuggestedFilename added in v0.1.7

func (x *DownloadHookResult) GetSuggestedFilename() string

func (*DownloadHookResult) GetUrl added in v0.1.7

func (x *DownloadHookResult) GetUrl() string

func (*DownloadHookResult) ProtoMessage added in v0.1.7

func (*DownloadHookResult) ProtoMessage()

func (*DownloadHookResult) ProtoReflect added in v0.1.7

func (x *DownloadHookResult) ProtoReflect() protoreflect.Message

func (*DownloadHookResult) Reset added in v0.1.7

func (x *DownloadHookResult) Reset()

func (*DownloadHookResult) String added in v0.1.7

func (x *DownloadHookResult) String() string

type DownloadSavedEvent added in v0.1.7

type DownloadSavedEvent struct {
	DownloadId        string `protobuf:"bytes,1,opt,name=download_id,json=downloadId,proto3" json:"download_id,omitempty"`
	FileId            string `protobuf:"bytes,2,opt,name=file_id,json=fileId,proto3" json:"file_id,omitempty"`
	SuggestedFilename string `protobuf:"bytes,3,opt,name=suggested_filename,json=suggestedFilename,proto3" json:"suggested_filename,omitempty"`
	Size              uint64 `protobuf:"varint,4,opt,name=size,proto3" json:"size,omitempty"`
	Note              string `protobuf:"bytes,5,opt,name=note,proto3" json:"note,omitempty"`
	// contains filtered or unexported fields
}

func (*DownloadSavedEvent) Descriptor deprecated added in v0.1.7

func (*DownloadSavedEvent) Descriptor() ([]byte, []int)

Deprecated: Use DownloadSavedEvent.ProtoReflect.Descriptor instead.

func (*DownloadSavedEvent) GetDownloadId added in v0.1.7

func (x *DownloadSavedEvent) GetDownloadId() string

func (*DownloadSavedEvent) GetFileId added in v0.1.8

func (x *DownloadSavedEvent) GetFileId() string

func (*DownloadSavedEvent) GetNote added in v0.1.7

func (x *DownloadSavedEvent) GetNote() string

func (*DownloadSavedEvent) GetSize added in v0.1.8

func (x *DownloadSavedEvent) GetSize() uint64

func (*DownloadSavedEvent) GetSuggestedFilename added in v0.1.8

func (x *DownloadSavedEvent) GetSuggestedFilename() string

func (*DownloadSavedEvent) ProtoMessage added in v0.1.7

func (*DownloadSavedEvent) ProtoMessage()

func (*DownloadSavedEvent) ProtoReflect added in v0.1.7

func (x *DownloadSavedEvent) ProtoReflect() protoreflect.Message

func (*DownloadSavedEvent) Reset added in v0.1.7

func (x *DownloadSavedEvent) Reset()

func (*DownloadSavedEvent) String added in v0.1.7

func (x *DownloadSavedEvent) String() string

type ElementClickedEvent

type ElementClickedEvent struct {
	CssSelector   string `protobuf:"bytes,1,opt,name=css_selector,json=cssSelector,proto3" json:"css_selector,omitempty"`
	Note          string `protobuf:"bytes,2,opt,name=note,proto3" json:"note,omitempty"`
	BidiSessionId string `protobuf:"bytes,3,opt,name=bidi_session_id,json=bidiSessionId,proto3" json:"bidi_session_id,omitempty"`
	// contains filtered or unexported fields
}

func (*ElementClickedEvent) Descriptor deprecated

func (*ElementClickedEvent) Descriptor() ([]byte, []int)

Deprecated: Use ElementClickedEvent.ProtoReflect.Descriptor instead.

func (*ElementClickedEvent) GetBidiSessionId

func (x *ElementClickedEvent) GetBidiSessionId() string

func (*ElementClickedEvent) GetCssSelector

func (x *ElementClickedEvent) GetCssSelector() string

func (*ElementClickedEvent) GetNote

func (x *ElementClickedEvent) GetNote() string

func (*ElementClickedEvent) ProtoMessage

func (*ElementClickedEvent) ProtoMessage()

func (*ElementClickedEvent) ProtoReflect

func (x *ElementClickedEvent) ProtoReflect() protoreflect.Message

func (*ElementClickedEvent) Reset

func (x *ElementClickedEvent) Reset()

func (*ElementClickedEvent) String

func (x *ElementClickedEvent) String() string

type ElementCountedEvent added in v0.0.3

type ElementCountedEvent struct {
	CssSelector string `protobuf:"bytes,1,opt,name=css_selector,json=cssSelector,proto3" json:"css_selector,omitempty"`
	Count       uint32 `protobuf:"varint,2,opt,name=count,proto3" json:"count,omitempty"`
	Note        string `protobuf:"bytes,3,opt,name=note,proto3" json:"note,omitempty"`
	// contains filtered or unexported fields
}

func (*ElementCountedEvent) Descriptor deprecated added in v0.0.3

func (*ElementCountedEvent) Descriptor() ([]byte, []int)

Deprecated: Use ElementCountedEvent.ProtoReflect.Descriptor instead.

func (*ElementCountedEvent) GetCount added in v0.0.3

func (x *ElementCountedEvent) GetCount() uint32

func (*ElementCountedEvent) GetCssSelector added in v0.0.3

func (x *ElementCountedEvent) GetCssSelector() string

func (*ElementCountedEvent) GetNote added in v0.0.3

func (x *ElementCountedEvent) GetNote() string

func (*ElementCountedEvent) ProtoMessage added in v0.0.3

func (*ElementCountedEvent) ProtoMessage()

func (*ElementCountedEvent) ProtoReflect added in v0.0.3

func (x *ElementCountedEvent) ProtoReflect() protoreflect.Message

func (*ElementCountedEvent) Reset added in v0.0.3

func (x *ElementCountedEvent) Reset()

func (*ElementCountedEvent) String added in v0.0.3

func (x *ElementCountedEvent) String() string

type ElementFilledEvent added in v0.0.3

type ElementFilledEvent struct {
	CssSelector string `protobuf:"bytes,1,opt,name=css_selector,json=cssSelector,proto3" json:"css_selector,omitempty"`
	Value       string `protobuf:"bytes,2,opt,name=value,proto3" json:"value,omitempty"`
	Note        string `protobuf:"bytes,3,opt,name=note,proto3" json:"note,omitempty"`
	// contains filtered or unexported fields
}

func (*ElementFilledEvent) Descriptor deprecated added in v0.0.3

func (*ElementFilledEvent) Descriptor() ([]byte, []int)

Deprecated: Use ElementFilledEvent.ProtoReflect.Descriptor instead.

func (*ElementFilledEvent) GetCssSelector added in v0.0.3

func (x *ElementFilledEvent) GetCssSelector() string

func (*ElementFilledEvent) GetNote added in v0.0.3

func (x *ElementFilledEvent) GetNote() string

func (*ElementFilledEvent) GetValue added in v0.0.3

func (x *ElementFilledEvent) GetValue() string

func (*ElementFilledEvent) ProtoMessage added in v0.0.3

func (*ElementFilledEvent) ProtoMessage()

func (*ElementFilledEvent) ProtoReflect added in v0.0.3

func (x *ElementFilledEvent) ProtoReflect() protoreflect.Message

func (*ElementFilledEvent) Reset added in v0.0.3

func (x *ElementFilledEvent) Reset()

func (*ElementFilledEvent) String added in v0.0.3

func (x *ElementFilledEvent) String() string

type ElementFocusedEvent added in v0.0.3

type ElementFocusedEvent struct {
	CssSelector string `protobuf:"bytes,1,opt,name=css_selector,json=cssSelector,proto3" json:"css_selector,omitempty"`
	Note        string `protobuf:"bytes,2,opt,name=note,proto3" json:"note,omitempty"`
	// contains filtered or unexported fields
}

func (*ElementFocusedEvent) Descriptor deprecated added in v0.0.3

func (*ElementFocusedEvent) Descriptor() ([]byte, []int)

Deprecated: Use ElementFocusedEvent.ProtoReflect.Descriptor instead.

func (*ElementFocusedEvent) GetCssSelector added in v0.0.3

func (x *ElementFocusedEvent) GetCssSelector() string

func (*ElementFocusedEvent) GetNote added in v0.0.3

func (x *ElementFocusedEvent) GetNote() string

func (*ElementFocusedEvent) ProtoMessage added in v0.0.3

func (*ElementFocusedEvent) ProtoMessage()

func (*ElementFocusedEvent) ProtoReflect added in v0.0.3

func (x *ElementFocusedEvent) ProtoReflect() protoreflect.Message

func (*ElementFocusedEvent) Reset added in v0.0.3

func (x *ElementFocusedEvent) Reset()

func (*ElementFocusedEvent) String added in v0.0.3

func (x *ElementFocusedEvent) String() string

type ElementHoveredEvent added in v0.0.3

type ElementHoveredEvent struct {
	CssSelector string `protobuf:"bytes,1,opt,name=css_selector,json=cssSelector,proto3" json:"css_selector,omitempty"`
	Note        string `protobuf:"bytes,2,opt,name=note,proto3" json:"note,omitempty"`
	// contains filtered or unexported fields
}

func (*ElementHoveredEvent) Descriptor deprecated added in v0.0.3

func (*ElementHoveredEvent) Descriptor() ([]byte, []int)

Deprecated: Use ElementHoveredEvent.ProtoReflect.Descriptor instead.

func (*ElementHoveredEvent) GetCssSelector added in v0.0.3

func (x *ElementHoveredEvent) GetCssSelector() string

func (*ElementHoveredEvent) GetNote added in v0.0.3

func (x *ElementHoveredEvent) GetNote() string

func (*ElementHoveredEvent) ProtoMessage added in v0.0.3

func (*ElementHoveredEvent) ProtoMessage()

func (*ElementHoveredEvent) ProtoReflect added in v0.0.3

func (x *ElementHoveredEvent) ProtoReflect() protoreflect.Message

func (*ElementHoveredEvent) Reset added in v0.0.3

func (x *ElementHoveredEvent) Reset()

func (*ElementHoveredEvent) String added in v0.0.3

func (x *ElementHoveredEvent) String() string

type ElementsHighlightedEvent added in v0.0.3

type ElementsHighlightedEvent struct {
	CssSelector string `protobuf:"bytes,1,opt,name=css_selector,json=cssSelector,proto3" json:"css_selector,omitempty"`
	Count       uint32 `protobuf:"varint,2,opt,name=count,proto3" json:"count,omitempty"`
	Note        string `protobuf:"bytes,3,opt,name=note,proto3" json:"note,omitempty"`
	// contains filtered or unexported fields
}

func (*ElementsHighlightedEvent) Descriptor deprecated added in v0.0.3

func (*ElementsHighlightedEvent) Descriptor() ([]byte, []int)

Deprecated: Use ElementsHighlightedEvent.ProtoReflect.Descriptor instead.

func (*ElementsHighlightedEvent) GetCount added in v0.0.3

func (x *ElementsHighlightedEvent) GetCount() uint32

func (*ElementsHighlightedEvent) GetCssSelector added in v0.0.3

func (x *ElementsHighlightedEvent) GetCssSelector() string

func (*ElementsHighlightedEvent) GetNote added in v0.0.3

func (x *ElementsHighlightedEvent) GetNote() string

func (*ElementsHighlightedEvent) ProtoMessage added in v0.0.3

func (*ElementsHighlightedEvent) ProtoMessage()

func (*ElementsHighlightedEvent) ProtoReflect added in v0.0.3

func (x *ElementsHighlightedEvent) ProtoReflect() protoreflect.Message

func (*ElementsHighlightedEvent) Reset added in v0.0.3

func (x *ElementsHighlightedEvent) Reset()

func (*ElementsHighlightedEvent) String added in v0.0.3

func (x *ElementsHighlightedEvent) String() string

type EngineServiceClient

EngineServiceClient is the client API for EngineService service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream.

type EngineServiceServer

type EngineServiceServer interface {
	Ping(context.Context, *PingRequest) (*PingResponse, error)
	SurfaceSession(grpc.BidiStreamingServer[SurfaceSessionCommand, SurfaceSessionEvent]) error
	ContextSession(grpc.BidiStreamingServer[ContextSessionCommand, ContextSessionEvent]) error
	// contains filtered or unexported methods
}

EngineServiceServer is the server API for EngineService service. All implementations must embed UnimplementedEngineServiceServer for forward compatibility.

type EngineService_ContextSessionClient added in v0.0.53

type EngineService_ContextSessionClient = grpc.BidiStreamingClient[ContextSessionCommand, ContextSessionEvent]

This type alias is provided for backwards compatibility with existing code that references the prior non-generic stream type by name.

type EngineService_ContextSessionServer added in v0.0.53

type EngineService_ContextSessionServer = grpc.BidiStreamingServer[ContextSessionCommand, ContextSessionEvent]

This type alias is provided for backwards compatibility with existing code that references the prior non-generic stream type by name.

type EngineService_SurfaceSessionClient added in v0.0.53

type EngineService_SurfaceSessionClient = grpc.BidiStreamingClient[SurfaceSessionCommand, SurfaceSessionEvent]

This type alias is provided for backwards compatibility with existing code that references the prior non-generic stream type by name.

type EngineService_SurfaceSessionServer added in v0.0.53

type EngineService_SurfaceSessionServer = grpc.BidiStreamingServer[SurfaceSessionCommand, SurfaceSessionEvent]

This type alias is provided for backwards compatibility with existing code that references the prior non-generic stream type by name.

type FileChooserFilesSetEvent added in v0.1.7

type FileChooserFilesSetEvent struct {
	FileChooserId string   `protobuf:"bytes,1,opt,name=file_chooser_id,json=fileChooserId,proto3" json:"file_chooser_id,omitempty"`
	FileIds       []string `protobuf:"bytes,2,rep,name=file_ids,json=fileIds,proto3" json:"file_ids,omitempty"`
	Note          string   `protobuf:"bytes,3,opt,name=note,proto3" json:"note,omitempty"`
	// contains filtered or unexported fields
}

func (*FileChooserFilesSetEvent) Descriptor deprecated added in v0.1.7

func (*FileChooserFilesSetEvent) Descriptor() ([]byte, []int)

Deprecated: Use FileChooserFilesSetEvent.ProtoReflect.Descriptor instead.

func (*FileChooserFilesSetEvent) GetFileChooserId added in v0.1.7

func (x *FileChooserFilesSetEvent) GetFileChooserId() string

func (*FileChooserFilesSetEvent) GetFileIds added in v0.1.8

func (x *FileChooserFilesSetEvent) GetFileIds() []string

func (*FileChooserFilesSetEvent) GetNote added in v0.1.7

func (x *FileChooserFilesSetEvent) GetNote() string

func (*FileChooserFilesSetEvent) ProtoMessage added in v0.1.7

func (*FileChooserFilesSetEvent) ProtoMessage()

func (*FileChooserFilesSetEvent) ProtoReflect added in v0.1.7

func (x *FileChooserFilesSetEvent) ProtoReflect() protoreflect.Message

func (*FileChooserFilesSetEvent) Reset added in v0.1.7

func (x *FileChooserFilesSetEvent) Reset()

func (*FileChooserFilesSetEvent) String added in v0.1.7

func (x *FileChooserFilesSetEvent) String() string

type FileChooserHookResult added in v0.1.7

type FileChooserHookResult struct {
	FileChooserId string `protobuf:"bytes,1,opt,name=file_chooser_id,json=fileChooserId,proto3" json:"file_chooser_id,omitempty"`
	IsMultiple    bool   `protobuf:"varint,2,opt,name=is_multiple,json=isMultiple,proto3" json:"is_multiple,omitempty"`
	Note          string `protobuf:"bytes,3,opt,name=note,proto3" json:"note,omitempty"`
	// contains filtered or unexported fields
}

func (*FileChooserHookResult) Descriptor deprecated added in v0.1.7

func (*FileChooserHookResult) Descriptor() ([]byte, []int)

Deprecated: Use FileChooserHookResult.ProtoReflect.Descriptor instead.

func (*FileChooserHookResult) GetFileChooserId added in v0.1.7

func (x *FileChooserHookResult) GetFileChooserId() string

func (*FileChooserHookResult) GetIsMultiple added in v0.1.7

func (x *FileChooserHookResult) GetIsMultiple() bool

func (*FileChooserHookResult) GetNote added in v0.1.7

func (x *FileChooserHookResult) GetNote() string

func (*FileChooserHookResult) ProtoMessage added in v0.1.7

func (*FileChooserHookResult) ProtoMessage()

func (*FileChooserHookResult) ProtoReflect added in v0.1.7

func (x *FileChooserHookResult) ProtoReflect() protoreflect.Message

func (*FileChooserHookResult) Reset added in v0.1.7

func (x *FileChooserHookResult) Reset()

func (*FileChooserHookResult) String added in v0.1.7

func (x *FileChooserHookResult) String() string

type FileChunkEvent added in v0.1.8

type FileChunkEvent struct {
	FileId string `protobuf:"bytes,1,opt,name=file_id,json=fileId,proto3" json:"file_id,omitempty"`
	Offset uint64 `protobuf:"varint,2,opt,name=offset,proto3" json:"offset,omitempty"`
	Data   []byte `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"`
	Last   bool   `protobuf:"varint,4,opt,name=last,proto3" json:"last,omitempty"`
	// contains filtered or unexported fields
}

func (*FileChunkEvent) Descriptor deprecated added in v0.1.8

func (*FileChunkEvent) Descriptor() ([]byte, []int)

Deprecated: Use FileChunkEvent.ProtoReflect.Descriptor instead.

func (*FileChunkEvent) GetData added in v0.1.8

func (x *FileChunkEvent) GetData() []byte

func (*FileChunkEvent) GetFileId added in v0.1.8

func (x *FileChunkEvent) GetFileId() string

func (*FileChunkEvent) GetLast added in v0.1.8

func (x *FileChunkEvent) GetLast() bool

func (*FileChunkEvent) GetOffset added in v0.1.8

func (x *FileChunkEvent) GetOffset() uint64

func (*FileChunkEvent) ProtoMessage added in v0.1.8

func (*FileChunkEvent) ProtoMessage()

func (*FileChunkEvent) ProtoReflect added in v0.1.8

func (x *FileChunkEvent) ProtoReflect() protoreflect.Message

func (*FileChunkEvent) Reset added in v0.1.8

func (x *FileChunkEvent) Reset()

func (*FileChunkEvent) String added in v0.1.8

func (x *FileChunkEvent) String() string

type FileUploadedEvent added in v0.1.8

type FileUploadedEvent struct {
	TransferId string `protobuf:"bytes,1,opt,name=transfer_id,json=transferId,proto3" json:"transfer_id,omitempty"`
	FileId     string `protobuf:"bytes,2,opt,name=file_id,json=fileId,proto3" json:"file_id,omitempty"`
	Name       string `protobuf:"bytes,3,opt,name=name,proto3" json:"name,omitempty"`
	Size       uint64 `protobuf:"varint,4,opt,name=size,proto3" json:"size,omitempty"`
	// contains filtered or unexported fields
}

func (*FileUploadedEvent) Descriptor deprecated added in v0.1.8

func (*FileUploadedEvent) Descriptor() ([]byte, []int)

Deprecated: Use FileUploadedEvent.ProtoReflect.Descriptor instead.

func (*FileUploadedEvent) GetFileId added in v0.1.8

func (x *FileUploadedEvent) GetFileId() string

func (*FileUploadedEvent) GetName added in v0.1.8

func (x *FileUploadedEvent) GetName() string

func (*FileUploadedEvent) GetSize added in v0.1.8

func (x *FileUploadedEvent) GetSize() uint64

func (*FileUploadedEvent) GetTransferId added in v0.1.8

func (x *FileUploadedEvent) GetTransferId() string

func (*FileUploadedEvent) ProtoMessage added in v0.1.8

func (*FileUploadedEvent) ProtoMessage()

func (*FileUploadedEvent) ProtoReflect added in v0.1.8

func (x *FileUploadedEvent) ProtoReflect() protoreflect.Message

func (*FileUploadedEvent) Reset added in v0.1.8

func (x *FileUploadedEvent) Reset()

func (*FileUploadedEvent) String added in v0.1.8

func (x *FileUploadedEvent) String() string

type FillElementCommand added in v0.0.3

type FillElementCommand struct {
	CssSelector  string               `protobuf:"bytes,1,opt,name=css_selector,json=cssSelector,proto3" json:"css_selector,omitempty"`
	Value        string               `protobuf:"bytes,2,opt,name=value,proto3" json:"value,omitempty"`
	RetryOptions *CommandRetryOptions `protobuf:"bytes,3,opt,name=retry_options,json=retryOptions,proto3,oneof" json:"retry_options,omitempty"`
	// contains filtered or unexported fields
}

func (*FillElementCommand) Descriptor deprecated added in v0.0.3

func (*FillElementCommand) Descriptor() ([]byte, []int)

Deprecated: Use FillElementCommand.ProtoReflect.Descriptor instead.

func (*FillElementCommand) GetCssSelector added in v0.0.3

func (x *FillElementCommand) GetCssSelector() string

func (*FillElementCommand) GetRetryOptions added in v0.0.3

func (x *FillElementCommand) GetRetryOptions() *CommandRetryOptions

func (*FillElementCommand) GetValue added in v0.0.3

func (x *FillElementCommand) GetValue() string

func (*FillElementCommand) ProtoMessage added in v0.0.3

func (*FillElementCommand) ProtoMessage()

func (*FillElementCommand) ProtoReflect added in v0.0.3

func (x *FillElementCommand) ProtoReflect() protoreflect.Message

func (*FillElementCommand) Reset added in v0.0.3

func (x *FillElementCommand) Reset()

func (*FillElementCommand) String added in v0.0.3

func (x *FillElementCommand) String() string

type FocusElementCommand added in v0.0.3

type FocusElementCommand struct {
	CssSelector  string               `protobuf:"bytes,1,opt,name=css_selector,json=cssSelector,proto3" json:"css_selector,omitempty"`
	RetryOptions *CommandRetryOptions `protobuf:"bytes,2,opt,name=retry_options,json=retryOptions,proto3,oneof" json:"retry_options,omitempty"`
	// contains filtered or unexported fields
}

func (*FocusElementCommand) Descriptor deprecated added in v0.0.3

func (*FocusElementCommand) Descriptor() ([]byte, []int)

Deprecated: Use FocusElementCommand.ProtoReflect.Descriptor instead.

func (*FocusElementCommand) GetCssSelector added in v0.0.3

func (x *FocusElementCommand) GetCssSelector() string

func (*FocusElementCommand) GetRetryOptions added in v0.0.3

func (x *FocusElementCommand) GetRetryOptions() *CommandRetryOptions

func (*FocusElementCommand) ProtoMessage added in v0.0.3

func (*FocusElementCommand) ProtoMessage()

func (*FocusElementCommand) ProtoReflect added in v0.0.3

func (x *FocusElementCommand) ProtoReflect() protoreflect.Message

func (*FocusElementCommand) Reset added in v0.0.3

func (x *FocusElementCommand) Reset()

func (*FocusElementCommand) String added in v0.0.3

func (x *FocusElementCommand) String() string

type GetInnerTextCommand added in v0.0.3

type GetInnerTextCommand struct {
	CssSelector  string               `protobuf:"bytes,1,opt,name=css_selector,json=cssSelector,proto3" json:"css_selector,omitempty"`
	RetryOptions *CommandRetryOptions `protobuf:"bytes,2,opt,name=retry_options,json=retryOptions,proto3,oneof" json:"retry_options,omitempty"`
	// contains filtered or unexported fields
}

func (*GetInnerTextCommand) Descriptor deprecated added in v0.0.3

func (*GetInnerTextCommand) Descriptor() ([]byte, []int)

Deprecated: Use GetInnerTextCommand.ProtoReflect.Descriptor instead.

func (*GetInnerTextCommand) GetCssSelector added in v0.0.3

func (x *GetInnerTextCommand) GetCssSelector() string

func (*GetInnerTextCommand) GetRetryOptions added in v0.0.3

func (x *GetInnerTextCommand) GetRetryOptions() *CommandRetryOptions

func (*GetInnerTextCommand) ProtoMessage added in v0.0.3

func (*GetInnerTextCommand) ProtoMessage()

func (*GetInnerTextCommand) ProtoReflect added in v0.0.3

func (x *GetInnerTextCommand) ProtoReflect() protoreflect.Message

func (*GetInnerTextCommand) Reset added in v0.0.3

func (x *GetInnerTextCommand) Reset()

func (*GetInnerTextCommand) String added in v0.0.3

func (x *GetInnerTextCommand) String() string

type GetTextContentCommand added in v0.0.3

type GetTextContentCommand struct {
	CssSelector  string               `protobuf:"bytes,1,opt,name=css_selector,json=cssSelector,proto3" json:"css_selector,omitempty"`
	RetryOptions *CommandRetryOptions `protobuf:"bytes,2,opt,name=retry_options,json=retryOptions,proto3,oneof" json:"retry_options,omitempty"`
	// contains filtered or unexported fields
}

func (*GetTextContentCommand) Descriptor deprecated added in v0.0.3

func (*GetTextContentCommand) Descriptor() ([]byte, []int)

Deprecated: Use GetTextContentCommand.ProtoReflect.Descriptor instead.

func (*GetTextContentCommand) GetCssSelector added in v0.0.3

func (x *GetTextContentCommand) GetCssSelector() string

func (*GetTextContentCommand) GetRetryOptions added in v0.0.3

func (x *GetTextContentCommand) GetRetryOptions() *CommandRetryOptions

func (*GetTextContentCommand) ProtoMessage added in v0.0.3

func (*GetTextContentCommand) ProtoMessage()

func (*GetTextContentCommand) ProtoReflect added in v0.0.3

func (x *GetTextContentCommand) ProtoReflect() protoreflect.Message

func (*GetTextContentCommand) Reset added in v0.0.3

func (x *GetTextContentCommand) Reset()

func (*GetTextContentCommand) String added in v0.0.3

func (x *GetTextContentCommand) String() string

type HighlightElementsCommand added in v0.0.3

type HighlightElementsCommand struct {
	CssSelector  string               `protobuf:"bytes,1,opt,name=css_selector,json=cssSelector,proto3" json:"css_selector,omitempty"`
	DurationMs   *uint32              `protobuf:"varint,2,opt,name=duration_ms,json=durationMs,proto3,oneof" json:"duration_ms,omitempty"`
	RetryOptions *CommandRetryOptions `protobuf:"bytes,3,opt,name=retry_options,json=retryOptions,proto3,oneof" json:"retry_options,omitempty"`
	// contains filtered or unexported fields
}

func (*HighlightElementsCommand) Descriptor deprecated added in v0.0.3

func (*HighlightElementsCommand) Descriptor() ([]byte, []int)

Deprecated: Use HighlightElementsCommand.ProtoReflect.Descriptor instead.

func (*HighlightElementsCommand) GetCssSelector added in v0.0.3

func (x *HighlightElementsCommand) GetCssSelector() string

func (*HighlightElementsCommand) GetDurationMs added in v0.0.3

func (x *HighlightElementsCommand) GetDurationMs() uint32

func (*HighlightElementsCommand) GetRetryOptions added in v0.0.3

func (x *HighlightElementsCommand) GetRetryOptions() *CommandRetryOptions

func (*HighlightElementsCommand) ProtoMessage added in v0.0.3

func (*HighlightElementsCommand) ProtoMessage()

func (*HighlightElementsCommand) ProtoReflect added in v0.0.3

func (x *HighlightElementsCommand) ProtoReflect() protoreflect.Message

func (*HighlightElementsCommand) Reset added in v0.0.3

func (x *HighlightElementsCommand) Reset()

func (*HighlightElementsCommand) String added in v0.0.3

func (x *HighlightElementsCommand) String() string

type HookCompletedEvent added in v0.1.5

type HookCompletedEvent struct {
	HookId string `protobuf:"bytes,1,opt,name=hook_id,json=hookId,proto3" json:"hook_id,omitempty"`
	// Types that are valid to be assigned to Result:
	//
	//	*HookCompletedEvent_NewPage
	//	*HookCompletedEvent_FileChooser
	//	*HookCompletedEvent_Download
	//	*HookCompletedEvent_MobileFileChooser
	//	*HookCompletedEvent_MobileDownload
	Result isHookCompletedEvent_Result `protobuf_oneof:"result"`
	// contains filtered or unexported fields
}

func (*HookCompletedEvent) Descriptor deprecated added in v0.1.5

func (*HookCompletedEvent) Descriptor() ([]byte, []int)

Deprecated: Use HookCompletedEvent.ProtoReflect.Descriptor instead.

func (*HookCompletedEvent) GetDownload added in v0.1.7

func (x *HookCompletedEvent) GetDownload() *DownloadHookResult

func (*HookCompletedEvent) GetFileChooser added in v0.1.7

func (x *HookCompletedEvent) GetFileChooser() *FileChooserHookResult

func (*HookCompletedEvent) GetHookId added in v0.1.5

func (x *HookCompletedEvent) GetHookId() string

func (*HookCompletedEvent) GetMobileDownload added in v0.1.8

func (x *HookCompletedEvent) GetMobileDownload() *MobileDownloadHookResult

func (*HookCompletedEvent) GetMobileFileChooser added in v0.1.8

func (x *HookCompletedEvent) GetMobileFileChooser() *MobileFileChooserHookResult

func (*HookCompletedEvent) GetNewPage added in v0.1.5

func (x *HookCompletedEvent) GetNewPage() *NewPageHookResult

func (*HookCompletedEvent) GetResult added in v0.1.5

func (x *HookCompletedEvent) GetResult() isHookCompletedEvent_Result

func (*HookCompletedEvent) ProtoMessage added in v0.1.5

func (*HookCompletedEvent) ProtoMessage()

func (*HookCompletedEvent) ProtoReflect added in v0.1.5

func (x *HookCompletedEvent) ProtoReflect() protoreflect.Message

func (*HookCompletedEvent) Reset added in v0.1.5

func (x *HookCompletedEvent) Reset()

func (*HookCompletedEvent) String added in v0.1.5

func (x *HookCompletedEvent) String() string

type HookCompletedEvent_Download added in v0.1.7

type HookCompletedEvent_Download struct {
	Download *DownloadHookResult `protobuf:"bytes,4,opt,name=download,proto3,oneof"`
}

type HookCompletedEvent_FileChooser added in v0.1.7

type HookCompletedEvent_FileChooser struct {
	FileChooser *FileChooserHookResult `protobuf:"bytes,3,opt,name=file_chooser,json=fileChooser,proto3,oneof"`
}

type HookCompletedEvent_MobileDownload added in v0.1.8

type HookCompletedEvent_MobileDownload struct {
	MobileDownload *MobileDownloadHookResult `protobuf:"bytes,6,opt,name=mobile_download,json=mobileDownload,proto3,oneof"`
}

type HookCompletedEvent_MobileFileChooser added in v0.1.8

type HookCompletedEvent_MobileFileChooser struct {
	MobileFileChooser *MobileFileChooserHookResult `protobuf:"bytes,5,opt,name=mobile_file_chooser,json=mobileFileChooser,proto3,oneof"`
}

type HookCompletedEvent_NewPage added in v0.1.5

type HookCompletedEvent_NewPage struct {
	NewPage *NewPageHookResult `protobuf:"bytes,2,opt,name=new_page,json=newPage,proto3,oneof"`
}

type HookRegisteredEvent added in v0.1.5

type HookRegisteredEvent struct {
	HookId string `protobuf:"bytes,1,opt,name=hook_id,json=hookId,proto3" json:"hook_id,omitempty"`
	// contains filtered or unexported fields
}

func (*HookRegisteredEvent) Descriptor deprecated added in v0.1.5

func (*HookRegisteredEvent) Descriptor() ([]byte, []int)

Deprecated: Use HookRegisteredEvent.ProtoReflect.Descriptor instead.

func (*HookRegisteredEvent) GetHookId added in v0.1.5

func (x *HookRegisteredEvent) GetHookId() string

func (*HookRegisteredEvent) ProtoMessage added in v0.1.5

func (*HookRegisteredEvent) ProtoMessage()

func (*HookRegisteredEvent) ProtoReflect added in v0.1.5

func (x *HookRegisteredEvent) ProtoReflect() protoreflect.Message

func (*HookRegisteredEvent) Reset added in v0.1.5

func (x *HookRegisteredEvent) Reset()

func (*HookRegisteredEvent) String added in v0.1.5

func (x *HookRegisteredEvent) String() string

type HoverElementCommand added in v0.0.3

type HoverElementCommand struct {
	CssSelector  string               `protobuf:"bytes,1,opt,name=css_selector,json=cssSelector,proto3" json:"css_selector,omitempty"`
	RetryOptions *CommandRetryOptions `protobuf:"bytes,2,opt,name=retry_options,json=retryOptions,proto3,oneof" json:"retry_options,omitempty"`
	// contains filtered or unexported fields
}

func (*HoverElementCommand) Descriptor deprecated added in v0.0.3

func (*HoverElementCommand) Descriptor() ([]byte, []int)

Deprecated: Use HoverElementCommand.ProtoReflect.Descriptor instead.

func (*HoverElementCommand) GetCssSelector added in v0.0.3

func (x *HoverElementCommand) GetCssSelector() string

func (*HoverElementCommand) GetRetryOptions added in v0.0.3

func (x *HoverElementCommand) GetRetryOptions() *CommandRetryOptions

func (*HoverElementCommand) ProtoMessage added in v0.0.3

func (*HoverElementCommand) ProtoMessage()

func (*HoverElementCommand) ProtoReflect added in v0.0.3

func (x *HoverElementCommand) ProtoReflect() protoreflect.Message

func (*HoverElementCommand) Reset added in v0.0.3

func (x *HoverElementCommand) Reset()

func (*HoverElementCommand) String added in v0.0.3

func (x *HoverElementCommand) String() string

type InnerTextResolvedEvent added in v0.0.3

type InnerTextResolvedEvent struct {
	CssSelector string `protobuf:"bytes,1,opt,name=css_selector,json=cssSelector,proto3" json:"css_selector,omitempty"`
	Text        string `protobuf:"bytes,2,opt,name=text,proto3" json:"text,omitempty"`
	Note        string `protobuf:"bytes,3,opt,name=note,proto3" json:"note,omitempty"`
	// contains filtered or unexported fields
}

func (*InnerTextResolvedEvent) Descriptor deprecated added in v0.0.3

func (*InnerTextResolvedEvent) Descriptor() ([]byte, []int)

Deprecated: Use InnerTextResolvedEvent.ProtoReflect.Descriptor instead.

func (*InnerTextResolvedEvent) GetCssSelector added in v0.0.3

func (x *InnerTextResolvedEvent) GetCssSelector() string

func (*InnerTextResolvedEvent) GetNote added in v0.0.3

func (x *InnerTextResolvedEvent) GetNote() string

func (*InnerTextResolvedEvent) GetText added in v0.0.3

func (x *InnerTextResolvedEvent) GetText() string

func (*InnerTextResolvedEvent) ProtoMessage added in v0.0.3

func (*InnerTextResolvedEvent) ProtoMessage()

func (*InnerTextResolvedEvent) ProtoReflect added in v0.0.3

func (x *InnerTextResolvedEvent) ProtoReflect() protoreflect.Message

func (*InnerTextResolvedEvent) Reset added in v0.0.3

func (x *InnerTextResolvedEvent) Reset()

func (*InnerTextResolvedEvent) String added in v0.0.3

func (x *InnerTextResolvedEvent) String() string

type KeyPressedEvent added in v0.0.3

type KeyPressedEvent struct {
	CssSelector string `protobuf:"bytes,1,opt,name=css_selector,json=cssSelector,proto3" json:"css_selector,omitempty"`
	Key         string `protobuf:"bytes,2,opt,name=key,proto3" json:"key,omitempty"`
	Note        string `protobuf:"bytes,3,opt,name=note,proto3" json:"note,omitempty"`
	// contains filtered or unexported fields
}

func (*KeyPressedEvent) Descriptor deprecated added in v0.0.3

func (*KeyPressedEvent) Descriptor() ([]byte, []int)

Deprecated: Use KeyPressedEvent.ProtoReflect.Descriptor instead.

func (*KeyPressedEvent) GetCssSelector added in v0.0.3

func (x *KeyPressedEvent) GetCssSelector() string

func (*KeyPressedEvent) GetKey added in v0.0.3

func (x *KeyPressedEvent) GetKey() string

func (*KeyPressedEvent) GetNote added in v0.0.3

func (x *KeyPressedEvent) GetNote() string

func (*KeyPressedEvent) ProtoMessage added in v0.0.3

func (*KeyPressedEvent) ProtoMessage()

func (*KeyPressedEvent) ProtoReflect added in v0.0.3

func (x *KeyPressedEvent) ProtoReflect() protoreflect.Message

func (*KeyPressedEvent) Reset added in v0.0.3

func (x *KeyPressedEvent) Reset()

func (*KeyPressedEvent) String added in v0.0.3

func (x *KeyPressedEvent) String() string

type LaunchAppCommand added in v0.0.53

type LaunchAppCommand struct {
	ApkPath          *string              `protobuf:"bytes,1,opt,name=apk_path,json=apkPath,proto3,oneof" json:"apk_path,omitempty"`
	AppId            *string              `protobuf:"bytes,2,opt,name=app_id,json=appId,proto3,oneof" json:"app_id,omitempty"`
	LaunchActivity   *string              `protobuf:"bytes,3,opt,name=launch_activity,json=launchActivity,proto3,oneof" json:"launch_activity,omitempty"`
	StopBeforeLaunch bool                 `protobuf:"varint,4,opt,name=stop_before_launch,json=stopBeforeLaunch,proto3" json:"stop_before_launch,omitempty"`
	RetryOptions     *CommandRetryOptions `protobuf:"bytes,5,opt,name=retry_options,json=retryOptions,proto3,oneof" json:"retry_options,omitempty"`
	// contains filtered or unexported fields
}

func (*LaunchAppCommand) Descriptor deprecated added in v0.0.53

func (*LaunchAppCommand) Descriptor() ([]byte, []int)

Deprecated: Use LaunchAppCommand.ProtoReflect.Descriptor instead.

func (*LaunchAppCommand) GetApkPath added in v0.0.53

func (x *LaunchAppCommand) GetApkPath() string

func (*LaunchAppCommand) GetAppId added in v0.0.53

func (x *LaunchAppCommand) GetAppId() string

func (*LaunchAppCommand) GetLaunchActivity added in v0.0.53

func (x *LaunchAppCommand) GetLaunchActivity() string

func (*LaunchAppCommand) GetRetryOptions added in v0.0.53

func (x *LaunchAppCommand) GetRetryOptions() *CommandRetryOptions

func (*LaunchAppCommand) GetStopBeforeLaunch added in v0.0.53

func (x *LaunchAppCommand) GetStopBeforeLaunch() bool

func (*LaunchAppCommand) ProtoMessage added in v0.0.53

func (*LaunchAppCommand) ProtoMessage()

func (*LaunchAppCommand) ProtoReflect added in v0.0.53

func (x *LaunchAppCommand) ProtoReflect() protoreflect.Message

func (*LaunchAppCommand) Reset added in v0.0.53

func (x *LaunchAppCommand) Reset()

func (*LaunchAppCommand) String added in v0.0.53

func (x *LaunchAppCommand) String() string

type LaunchBrowserCommand added in v0.0.27

type LaunchBrowserCommand struct {
	BrowserKind   BrowserKind          `` /* 132-byte string literal not displayed */
	BrowserBinary *string              `protobuf:"bytes,2,opt,name=browser_binary,json=browserBinary,proto3,oneof" json:"browser_binary,omitempty"`
	RetryOptions  *CommandRetryOptions `protobuf:"bytes,3,opt,name=retry_options,json=retryOptions,proto3,oneof" json:"retry_options,omitempty"`
	// contains filtered or unexported fields
}

func (*LaunchBrowserCommand) Descriptor deprecated added in v0.0.27

func (*LaunchBrowserCommand) Descriptor() ([]byte, []int)

Deprecated: Use LaunchBrowserCommand.ProtoReflect.Descriptor instead.

func (*LaunchBrowserCommand) GetBrowserBinary added in v0.0.27

func (x *LaunchBrowserCommand) GetBrowserBinary() string

func (*LaunchBrowserCommand) GetBrowserKind added in v0.0.27

func (x *LaunchBrowserCommand) GetBrowserKind() BrowserKind

func (*LaunchBrowserCommand) GetRetryOptions added in v0.0.27

func (x *LaunchBrowserCommand) GetRetryOptions() *CommandRetryOptions

func (*LaunchBrowserCommand) ProtoMessage added in v0.0.27

func (*LaunchBrowserCommand) ProtoMessage()

func (*LaunchBrowserCommand) ProtoReflect added in v0.0.27

func (x *LaunchBrowserCommand) ProtoReflect() protoreflect.Message

func (*LaunchBrowserCommand) Reset added in v0.0.27

func (x *LaunchBrowserCommand) Reset()

func (*LaunchBrowserCommand) String added in v0.0.27

func (x *LaunchBrowserCommand) String() string

type LaunchChromeCommand

type LaunchChromeCommand struct {
	ChromeBinary *string              `protobuf:"bytes,1,opt,name=chrome_binary,json=chromeBinary,proto3,oneof" json:"chrome_binary,omitempty"`
	RetryOptions *CommandRetryOptions `protobuf:"bytes,2,opt,name=retry_options,json=retryOptions,proto3,oneof" json:"retry_options,omitempty"`
	// contains filtered or unexported fields
}

func (*LaunchChromeCommand) Descriptor deprecated

func (*LaunchChromeCommand) Descriptor() ([]byte, []int)

Deprecated: Use LaunchChromeCommand.ProtoReflect.Descriptor instead.

func (*LaunchChromeCommand) GetChromeBinary

func (x *LaunchChromeCommand) GetChromeBinary() string

func (*LaunchChromeCommand) GetRetryOptions added in v0.0.3

func (x *LaunchChromeCommand) GetRetryOptions() *CommandRetryOptions

func (*LaunchChromeCommand) ProtoMessage

func (*LaunchChromeCommand) ProtoMessage()

func (*LaunchChromeCommand) ProtoReflect

func (x *LaunchChromeCommand) ProtoReflect() protoreflect.Message

func (*LaunchChromeCommand) Reset

func (x *LaunchChromeCommand) Reset()

func (*LaunchChromeCommand) String

func (x *LaunchChromeCommand) String() string

type MobileConnectedEvent added in v0.0.53

type MobileConnectedEvent struct {
	Platform            MobilePlatform       `protobuf:"varint,1,opt,name=platform,proto3,enum=allwright.engine.v1.MobilePlatform" json:"platform,omitempty"`
	DeviceName          string               `protobuf:"bytes,2,opt,name=device_name,json=deviceName,proto3" json:"device_name,omitempty"`
	Note                string               `protobuf:"bytes,3,opt,name=note,proto3" json:"note,omitempty"`
	DeviceId            string               `protobuf:"bytes,4,opt,name=device_id,json=deviceId,proto3" json:"device_id,omitempty"`
	ConnectionKind      DeviceConnectionKind `` /* 150-byte string literal not displayed */
	Backend             string               `protobuf:"bytes,6,opt,name=backend,proto3" json:"backend,omitempty"`
	DeviceSessionId     string               `protobuf:"bytes,7,opt,name=device_session_id,json=deviceSessionId,proto3" json:"device_session_id,omitempty"`
	InitialAppSessionId string               `protobuf:"bytes,8,opt,name=initial_app_session_id,json=initialAppSessionId,proto3" json:"initial_app_session_id,omitempty"`
	PackageName         *string              `protobuf:"bytes,9,opt,name=package_name,json=packageName,proto3,oneof" json:"package_name,omitempty"`
	ActivityName        *string              `protobuf:"bytes,10,opt,name=activity_name,json=activityName,proto3,oneof" json:"activity_name,omitempty"`
	// contains filtered or unexported fields
}

func (*MobileConnectedEvent) Descriptor deprecated added in v0.0.53

func (*MobileConnectedEvent) Descriptor() ([]byte, []int)

Deprecated: Use MobileConnectedEvent.ProtoReflect.Descriptor instead.

func (*MobileConnectedEvent) GetActivityName added in v0.0.53

func (x *MobileConnectedEvent) GetActivityName() string

func (*MobileConnectedEvent) GetBackend added in v0.0.53

func (x *MobileConnectedEvent) GetBackend() string

func (*MobileConnectedEvent) GetConnectionKind added in v0.0.53

func (x *MobileConnectedEvent) GetConnectionKind() DeviceConnectionKind

func (*MobileConnectedEvent) GetDeviceId added in v0.0.53

func (x *MobileConnectedEvent) GetDeviceId() string

func (*MobileConnectedEvent) GetDeviceName added in v0.0.53

func (x *MobileConnectedEvent) GetDeviceName() string

func (*MobileConnectedEvent) GetDeviceSessionId added in v0.0.53

func (x *MobileConnectedEvent) GetDeviceSessionId() string

func (*MobileConnectedEvent) GetInitialAppSessionId added in v0.0.53

func (x *MobileConnectedEvent) GetInitialAppSessionId() string

func (*MobileConnectedEvent) GetNote added in v0.0.53

func (x *MobileConnectedEvent) GetNote() string

func (*MobileConnectedEvent) GetPackageName added in v0.0.53

func (x *MobileConnectedEvent) GetPackageName() string

func (*MobileConnectedEvent) GetPlatform added in v0.0.53

func (x *MobileConnectedEvent) GetPlatform() MobilePlatform

func (*MobileConnectedEvent) ProtoMessage added in v0.0.53

func (*MobileConnectedEvent) ProtoMessage()

func (*MobileConnectedEvent) ProtoReflect added in v0.0.53

func (x *MobileConnectedEvent) ProtoReflect() protoreflect.Message

func (*MobileConnectedEvent) Reset added in v0.0.53

func (x *MobileConnectedEvent) Reset()

func (*MobileConnectedEvent) String added in v0.0.53

func (x *MobileConnectedEvent) String() string

type MobileDownloadHookResult added in v0.1.8

type MobileDownloadHookResult struct {
	DownloadId        string `protobuf:"bytes,1,opt,name=download_id,json=downloadId,proto3" json:"download_id,omitempty"`
	SuggestedFilename string `protobuf:"bytes,2,opt,name=suggested_filename,json=suggestedFilename,proto3" json:"suggested_filename,omitempty"`
	Note              string `protobuf:"bytes,3,opt,name=note,proto3" json:"note,omitempty"`
	// contains filtered or unexported fields
}

func (*MobileDownloadHookResult) Descriptor deprecated added in v0.1.8

func (*MobileDownloadHookResult) Descriptor() ([]byte, []int)

Deprecated: Use MobileDownloadHookResult.ProtoReflect.Descriptor instead.

func (*MobileDownloadHookResult) GetDownloadId added in v0.1.8

func (x *MobileDownloadHookResult) GetDownloadId() string

func (*MobileDownloadHookResult) GetNote added in v0.1.8

func (x *MobileDownloadHookResult) GetNote() string

func (*MobileDownloadHookResult) GetSuggestedFilename added in v0.1.8

func (x *MobileDownloadHookResult) GetSuggestedFilename() string

func (*MobileDownloadHookResult) ProtoMessage added in v0.1.8

func (*MobileDownloadHookResult) ProtoMessage()

func (*MobileDownloadHookResult) ProtoReflect added in v0.1.8

func (x *MobileDownloadHookResult) ProtoReflect() protoreflect.Message

func (*MobileDownloadHookResult) Reset added in v0.1.8

func (x *MobileDownloadHookResult) Reset()

func (*MobileDownloadHookResult) String added in v0.1.8

func (x *MobileDownloadHookResult) String() string

type MobileDownloadSavedEvent added in v0.1.8

type MobileDownloadSavedEvent struct {
	DownloadId        string `protobuf:"bytes,1,opt,name=download_id,json=downloadId,proto3" json:"download_id,omitempty"`
	FileId            string `protobuf:"bytes,2,opt,name=file_id,json=fileId,proto3" json:"file_id,omitempty"`
	SuggestedFilename string `protobuf:"bytes,3,opt,name=suggested_filename,json=suggestedFilename,proto3" json:"suggested_filename,omitempty"`
	Size              uint64 `protobuf:"varint,4,opt,name=size,proto3" json:"size,omitempty"`
	Note              string `protobuf:"bytes,5,opt,name=note,proto3" json:"note,omitempty"`
	// contains filtered or unexported fields
}

func (*MobileDownloadSavedEvent) Descriptor deprecated added in v0.1.8

func (*MobileDownloadSavedEvent) Descriptor() ([]byte, []int)

Deprecated: Use MobileDownloadSavedEvent.ProtoReflect.Descriptor instead.

func (*MobileDownloadSavedEvent) GetDownloadId added in v0.1.8

func (x *MobileDownloadSavedEvent) GetDownloadId() string

func (*MobileDownloadSavedEvent) GetFileId added in v0.1.8

func (x *MobileDownloadSavedEvent) GetFileId() string

func (*MobileDownloadSavedEvent) GetNote added in v0.1.8

func (x *MobileDownloadSavedEvent) GetNote() string

func (*MobileDownloadSavedEvent) GetSize added in v0.1.8

func (x *MobileDownloadSavedEvent) GetSize() uint64

func (*MobileDownloadSavedEvent) GetSuggestedFilename added in v0.1.8

func (x *MobileDownloadSavedEvent) GetSuggestedFilename() string

func (*MobileDownloadSavedEvent) ProtoMessage added in v0.1.8

func (*MobileDownloadSavedEvent) ProtoMessage()

func (*MobileDownloadSavedEvent) ProtoReflect added in v0.1.8

func (x *MobileDownloadSavedEvent) ProtoReflect() protoreflect.Message

func (*MobileDownloadSavedEvent) Reset added in v0.1.8

func (x *MobileDownloadSavedEvent) Reset()

func (*MobileDownloadSavedEvent) String added in v0.1.8

func (x *MobileDownloadSavedEvent) String() string

type MobileFileChooserFilesSetEvent added in v0.1.8

type MobileFileChooserFilesSetEvent struct {
	FileChooserId string   `protobuf:"bytes,1,opt,name=file_chooser_id,json=fileChooserId,proto3" json:"file_chooser_id,omitempty"`
	FileIds       []string `protobuf:"bytes,2,rep,name=file_ids,json=fileIds,proto3" json:"file_ids,omitempty"`
	Note          string   `protobuf:"bytes,3,opt,name=note,proto3" json:"note,omitempty"`
	// contains filtered or unexported fields
}

func (*MobileFileChooserFilesSetEvent) Descriptor deprecated added in v0.1.8

func (*MobileFileChooserFilesSetEvent) Descriptor() ([]byte, []int)

Deprecated: Use MobileFileChooserFilesSetEvent.ProtoReflect.Descriptor instead.

func (*MobileFileChooserFilesSetEvent) GetFileChooserId added in v0.1.8

func (x *MobileFileChooserFilesSetEvent) GetFileChooserId() string

func (*MobileFileChooserFilesSetEvent) GetFileIds added in v0.1.8

func (x *MobileFileChooserFilesSetEvent) GetFileIds() []string

func (*MobileFileChooserFilesSetEvent) GetNote added in v0.1.8

func (*MobileFileChooserFilesSetEvent) ProtoMessage added in v0.1.8

func (*MobileFileChooserFilesSetEvent) ProtoMessage()

func (*MobileFileChooserFilesSetEvent) ProtoReflect added in v0.1.8

func (*MobileFileChooserFilesSetEvent) Reset added in v0.1.8

func (x *MobileFileChooserFilesSetEvent) Reset()

func (*MobileFileChooserFilesSetEvent) String added in v0.1.8

type MobileFileChooserHookResult added in v0.1.8

type MobileFileChooserHookResult struct {
	FileChooserId string `protobuf:"bytes,1,opt,name=file_chooser_id,json=fileChooserId,proto3" json:"file_chooser_id,omitempty"`
	IsMultiple    bool   `protobuf:"varint,2,opt,name=is_multiple,json=isMultiple,proto3" json:"is_multiple,omitempty"`
	Note          string `protobuf:"bytes,3,opt,name=note,proto3" json:"note,omitempty"`
	// contains filtered or unexported fields
}

func (*MobileFileChooserHookResult) Descriptor deprecated added in v0.1.8

func (*MobileFileChooserHookResult) Descriptor() ([]byte, []int)

Deprecated: Use MobileFileChooserHookResult.ProtoReflect.Descriptor instead.

func (*MobileFileChooserHookResult) GetFileChooserId added in v0.1.8

func (x *MobileFileChooserHookResult) GetFileChooserId() string

func (*MobileFileChooserHookResult) GetIsMultiple added in v0.1.8

func (x *MobileFileChooserHookResult) GetIsMultiple() bool

func (*MobileFileChooserHookResult) GetNote added in v0.1.8

func (x *MobileFileChooserHookResult) GetNote() string

func (*MobileFileChooserHookResult) ProtoMessage added in v0.1.8

func (*MobileFileChooserHookResult) ProtoMessage()

func (*MobileFileChooserHookResult) ProtoReflect added in v0.1.8

func (*MobileFileChooserHookResult) Reset added in v0.1.8

func (x *MobileFileChooserHookResult) Reset()

func (*MobileFileChooserHookResult) String added in v0.1.8

func (x *MobileFileChooserHookResult) String() string

type MobilePlatform added in v0.0.53

type MobilePlatform int32
const (
	MobilePlatform_MOBILE_PLATFORM_UNSPECIFIED MobilePlatform = 0
	MobilePlatform_MOBILE_PLATFORM_ANDROID     MobilePlatform = 1
	MobilePlatform_MOBILE_PLATFORM_IOS         MobilePlatform = 2
)

func (MobilePlatform) Descriptor added in v0.0.53

func (MobilePlatform) Enum added in v0.0.53

func (x MobilePlatform) Enum() *MobilePlatform

func (MobilePlatform) EnumDescriptor deprecated added in v0.0.53

func (MobilePlatform) EnumDescriptor() ([]byte, []int)

Deprecated: Use MobilePlatform.Descriptor instead.

func (MobilePlatform) Number added in v0.0.53

func (MobilePlatform) String added in v0.0.53

func (x MobilePlatform) String() string

func (MobilePlatform) Type added in v0.0.53

type NavigatePageCommand struct {
	Url          string               `protobuf:"bytes,1,opt,name=url,proto3" json:"url,omitempty"`
	RetryOptions *CommandRetryOptions `protobuf:"bytes,2,opt,name=retry_options,json=retryOptions,proto3,oneof" json:"retry_options,omitempty"`
	// contains filtered or unexported fields
}
func (*NavigatePageCommand) Descriptor() ([]byte, []int)

Deprecated: Use NavigatePageCommand.ProtoReflect.Descriptor instead.

func (x *NavigatePageCommand) GetRetryOptions() *CommandRetryOptions
func (x *NavigatePageCommand) GetUrl() string
func (*NavigatePageCommand) ProtoMessage()
func (x *NavigatePageCommand) ProtoReflect() protoreflect.Message
func (x *NavigatePageCommand) Reset()
func (x *NavigatePageCommand) String() string

type NewPageHookResult added in v0.1.5

type NewPageHookResult struct {
	ContextSessionId string `protobuf:"bytes,1,opt,name=context_session_id,json=contextSessionId,proto3" json:"context_session_id,omitempty"`
	Note             string `protobuf:"bytes,2,opt,name=note,proto3" json:"note,omitempty"`
	// contains filtered or unexported fields
}

func (*NewPageHookResult) Descriptor deprecated added in v0.1.5

func (*NewPageHookResult) Descriptor() ([]byte, []int)

Deprecated: Use NewPageHookResult.ProtoReflect.Descriptor instead.

func (*NewPageHookResult) GetContextSessionId added in v0.1.5

func (x *NewPageHookResult) GetContextSessionId() string

func (*NewPageHookResult) GetNote added in v0.1.5

func (x *NewPageHookResult) GetNote() string

func (*NewPageHookResult) ProtoMessage added in v0.1.5

func (*NewPageHookResult) ProtoMessage()

func (*NewPageHookResult) ProtoReflect added in v0.1.5

func (x *NewPageHookResult) ProtoReflect() protoreflect.Message

func (*NewPageHookResult) Reset added in v0.1.5

func (x *NewPageHookResult) Reset()

func (*NewPageHookResult) String added in v0.1.5

func (x *NewPageHookResult) String() string

type OpenContextCommand added in v0.0.53

type OpenContextCommand struct {
	RetryOptions *CommandRetryOptions `protobuf:"bytes,1,opt,name=retry_options,json=retryOptions,proto3,oneof" json:"retry_options,omitempty"`
	// contains filtered or unexported fields
}

func (*OpenContextCommand) Descriptor deprecated added in v0.0.53

func (*OpenContextCommand) Descriptor() ([]byte, []int)

Deprecated: Use OpenContextCommand.ProtoReflect.Descriptor instead.

func (*OpenContextCommand) GetRetryOptions added in v0.0.53

func (x *OpenContextCommand) GetRetryOptions() *CommandRetryOptions

func (*OpenContextCommand) ProtoMessage added in v0.0.53

func (*OpenContextCommand) ProtoMessage()

func (*OpenContextCommand) ProtoReflect added in v0.0.53

func (x *OpenContextCommand) ProtoReflect() protoreflect.Message

func (*OpenContextCommand) Reset added in v0.0.53

func (x *OpenContextCommand) Reset()

func (*OpenContextCommand) String added in v0.0.53

func (x *OpenContextCommand) String() string
type PageNavigatedEvent struct {
	Url  string `protobuf:"bytes,1,opt,name=url,proto3" json:"url,omitempty"`
	Note string `protobuf:"bytes,2,opt,name=note,proto3" json:"note,omitempty"`
	// contains filtered or unexported fields
}
func (*PageNavigatedEvent) Descriptor() ([]byte, []int)

Deprecated: Use PageNavigatedEvent.ProtoReflect.Descriptor instead.

func (x *PageNavigatedEvent) GetNote() string
func (x *PageNavigatedEvent) GetUrl() string
func (*PageNavigatedEvent) ProtoMessage()
func (x *PageNavigatedEvent) ProtoReflect() protoreflect.Message
func (x *PageNavigatedEvent) Reset()
func (x *PageNavigatedEvent) String() string

type PingRequest

type PingRequest struct {
	// contains filtered or unexported fields
}

func (*PingRequest) Descriptor deprecated

func (*PingRequest) Descriptor() ([]byte, []int)

Deprecated: Use PingRequest.ProtoReflect.Descriptor instead.

func (*PingRequest) ProtoMessage

func (*PingRequest) ProtoMessage()

func (*PingRequest) ProtoReflect

func (x *PingRequest) ProtoReflect() protoreflect.Message

func (*PingRequest) Reset

func (x *PingRequest) Reset()

func (*PingRequest) String

func (x *PingRequest) String() string

type PingResponse

type PingResponse struct {
	Message string `protobuf:"bytes,1,opt,name=message,proto3" json:"message,omitempty"`
	Version string `protobuf:"bytes,2,opt,name=version,proto3" json:"version,omitempty"`
	// contains filtered or unexported fields
}

func (*PingResponse) Descriptor deprecated

func (*PingResponse) Descriptor() ([]byte, []int)

Deprecated: Use PingResponse.ProtoReflect.Descriptor instead.

func (*PingResponse) GetMessage

func (x *PingResponse) GetMessage() string

func (*PingResponse) GetVersion added in v0.0.38

func (x *PingResponse) GetVersion() string

func (*PingResponse) ProtoMessage

func (*PingResponse) ProtoMessage()

func (*PingResponse) ProtoReflect

func (x *PingResponse) ProtoReflect() protoreflect.Message

func (*PingResponse) Reset

func (x *PingResponse) Reset()

func (*PingResponse) String

func (x *PingResponse) String() string

type PressKeyCommand added in v0.0.3

type PressKeyCommand struct {
	CssSelector  string               `protobuf:"bytes,1,opt,name=css_selector,json=cssSelector,proto3" json:"css_selector,omitempty"`
	Key          string               `protobuf:"bytes,2,opt,name=key,proto3" json:"key,omitempty"`
	Text         *string              `protobuf:"bytes,3,opt,name=text,proto3,oneof" json:"text,omitempty"`
	RetryOptions *CommandRetryOptions `protobuf:"bytes,4,opt,name=retry_options,json=retryOptions,proto3,oneof" json:"retry_options,omitempty"`
	// contains filtered or unexported fields
}

func (*PressKeyCommand) Descriptor deprecated added in v0.0.3

func (*PressKeyCommand) Descriptor() ([]byte, []int)

Deprecated: Use PressKeyCommand.ProtoReflect.Descriptor instead.

func (*PressKeyCommand) GetCssSelector added in v0.0.3

func (x *PressKeyCommand) GetCssSelector() string

func (*PressKeyCommand) GetKey added in v0.0.3

func (x *PressKeyCommand) GetKey() string

func (*PressKeyCommand) GetRetryOptions added in v0.0.3

func (x *PressKeyCommand) GetRetryOptions() *CommandRetryOptions

func (*PressKeyCommand) GetText added in v0.0.3

func (x *PressKeyCommand) GetText() string

func (*PressKeyCommand) ProtoMessage added in v0.0.3

func (*PressKeyCommand) ProtoMessage()

func (*PressKeyCommand) ProtoReflect added in v0.0.3

func (x *PressKeyCommand) ProtoReflect() protoreflect.Message

func (*PressKeyCommand) Reset added in v0.0.3

func (x *PressKeyCommand) Reset()

func (*PressKeyCommand) String added in v0.0.3

func (x *PressKeyCommand) String() string

type ReadFileChunkCommand added in v0.1.8

type ReadFileChunkCommand struct {
	FileId   string `protobuf:"bytes,1,opt,name=file_id,json=fileId,proto3" json:"file_id,omitempty"`
	Offset   uint64 `protobuf:"varint,2,opt,name=offset,proto3" json:"offset,omitempty"`
	MaxBytes uint32 `protobuf:"varint,3,opt,name=max_bytes,json=maxBytes,proto3" json:"max_bytes,omitempty"`
	// contains filtered or unexported fields
}

func (*ReadFileChunkCommand) Descriptor deprecated added in v0.1.8

func (*ReadFileChunkCommand) Descriptor() ([]byte, []int)

Deprecated: Use ReadFileChunkCommand.ProtoReflect.Descriptor instead.

func (*ReadFileChunkCommand) GetFileId added in v0.1.8

func (x *ReadFileChunkCommand) GetFileId() string

func (*ReadFileChunkCommand) GetMaxBytes added in v0.1.8

func (x *ReadFileChunkCommand) GetMaxBytes() uint32

func (*ReadFileChunkCommand) GetOffset added in v0.1.8

func (x *ReadFileChunkCommand) GetOffset() uint64

func (*ReadFileChunkCommand) ProtoMessage added in v0.1.8

func (*ReadFileChunkCommand) ProtoMessage()

func (*ReadFileChunkCommand) ProtoReflect added in v0.1.8

func (x *ReadFileChunkCommand) ProtoReflect() protoreflect.Message

func (*ReadFileChunkCommand) Reset added in v0.1.8

func (x *ReadFileChunkCommand) Reset()

func (*ReadFileChunkCommand) String added in v0.1.8

func (x *ReadFileChunkCommand) String() string

type RegisterDownloadHook added in v0.1.7

type RegisterDownloadHook struct {
	// contains filtered or unexported fields
}

func (*RegisterDownloadHook) Descriptor deprecated added in v0.1.7

func (*RegisterDownloadHook) Descriptor() ([]byte, []int)

Deprecated: Use RegisterDownloadHook.ProtoReflect.Descriptor instead.

func (*RegisterDownloadHook) ProtoMessage added in v0.1.7

func (*RegisterDownloadHook) ProtoMessage()

func (*RegisterDownloadHook) ProtoReflect added in v0.1.7

func (x *RegisterDownloadHook) ProtoReflect() protoreflect.Message

func (*RegisterDownloadHook) Reset added in v0.1.7

func (x *RegisterDownloadHook) Reset()

func (*RegisterDownloadHook) String added in v0.1.7

func (x *RegisterDownloadHook) String() string

type RegisterFileChooserHook added in v0.1.7

type RegisterFileChooserHook struct {
	// contains filtered or unexported fields
}

func (*RegisterFileChooserHook) Descriptor deprecated added in v0.1.7

func (*RegisterFileChooserHook) Descriptor() ([]byte, []int)

Deprecated: Use RegisterFileChooserHook.ProtoReflect.Descriptor instead.

func (*RegisterFileChooserHook) ProtoMessage added in v0.1.7

func (*RegisterFileChooserHook) ProtoMessage()

func (*RegisterFileChooserHook) ProtoReflect added in v0.1.7

func (x *RegisterFileChooserHook) ProtoReflect() protoreflect.Message

func (*RegisterFileChooserHook) Reset added in v0.1.7

func (x *RegisterFileChooserHook) Reset()

func (*RegisterFileChooserHook) String added in v0.1.7

func (x *RegisterFileChooserHook) String() string

type RegisterHookCommand added in v0.1.5

type RegisterHookCommand struct {

	// Types that are valid to be assigned to Hook:
	//
	//	*RegisterHookCommand_NewPage
	//	*RegisterHookCommand_FileChooser
	//	*RegisterHookCommand_Download
	//	*RegisterHookCommand_MobileFileChooser
	//	*RegisterHookCommand_MobileDownload
	Hook isRegisterHookCommand_Hook `protobuf_oneof:"hook"`
	// contains filtered or unexported fields
}

func (*RegisterHookCommand) Descriptor deprecated added in v0.1.5

func (*RegisterHookCommand) Descriptor() ([]byte, []int)

Deprecated: Use RegisterHookCommand.ProtoReflect.Descriptor instead.

func (*RegisterHookCommand) GetDownload added in v0.1.7

func (x *RegisterHookCommand) GetDownload() *RegisterDownloadHook

func (*RegisterHookCommand) GetFileChooser added in v0.1.7

func (x *RegisterHookCommand) GetFileChooser() *RegisterFileChooserHook

func (*RegisterHookCommand) GetHook added in v0.1.5

func (x *RegisterHookCommand) GetHook() isRegisterHookCommand_Hook

func (*RegisterHookCommand) GetMobileDownload added in v0.1.8

func (x *RegisterHookCommand) GetMobileDownload() *RegisterMobileDownloadHook

func (*RegisterHookCommand) GetMobileFileChooser added in v0.1.8

func (x *RegisterHookCommand) GetMobileFileChooser() *RegisterMobileFileChooserHook

func (*RegisterHookCommand) GetNewPage added in v0.1.5

func (x *RegisterHookCommand) GetNewPage() *RegisterNewPageHook

func (*RegisterHookCommand) ProtoMessage added in v0.1.5

func (*RegisterHookCommand) ProtoMessage()

func (*RegisterHookCommand) ProtoReflect added in v0.1.5

func (x *RegisterHookCommand) ProtoReflect() protoreflect.Message

func (*RegisterHookCommand) Reset added in v0.1.5

func (x *RegisterHookCommand) Reset()

func (*RegisterHookCommand) String added in v0.1.5

func (x *RegisterHookCommand) String() string

type RegisterHookCommand_Download added in v0.1.7

type RegisterHookCommand_Download struct {
	Download *RegisterDownloadHook `protobuf:"bytes,3,opt,name=download,proto3,oneof"`
}

type RegisterHookCommand_FileChooser added in v0.1.7

type RegisterHookCommand_FileChooser struct {
	FileChooser *RegisterFileChooserHook `protobuf:"bytes,2,opt,name=file_chooser,json=fileChooser,proto3,oneof"`
}

type RegisterHookCommand_MobileDownload added in v0.1.8

type RegisterHookCommand_MobileDownload struct {
	MobileDownload *RegisterMobileDownloadHook `protobuf:"bytes,5,opt,name=mobile_download,json=mobileDownload,proto3,oneof"`
}

type RegisterHookCommand_MobileFileChooser added in v0.1.8

type RegisterHookCommand_MobileFileChooser struct {
	MobileFileChooser *RegisterMobileFileChooserHook `protobuf:"bytes,4,opt,name=mobile_file_chooser,json=mobileFileChooser,proto3,oneof"`
}

type RegisterHookCommand_NewPage added in v0.1.5

type RegisterHookCommand_NewPage struct {
	NewPage *RegisterNewPageHook `protobuf:"bytes,1,opt,name=new_page,json=newPage,proto3,oneof"`
}

type RegisterMobileDownloadHook added in v0.1.8

type RegisterMobileDownloadHook struct {
	// contains filtered or unexported fields
}

func (*RegisterMobileDownloadHook) Descriptor deprecated added in v0.1.8

func (*RegisterMobileDownloadHook) Descriptor() ([]byte, []int)

Deprecated: Use RegisterMobileDownloadHook.ProtoReflect.Descriptor instead.

func (*RegisterMobileDownloadHook) ProtoMessage added in v0.1.8

func (*RegisterMobileDownloadHook) ProtoMessage()

func (*RegisterMobileDownloadHook) ProtoReflect added in v0.1.8

func (*RegisterMobileDownloadHook) Reset added in v0.1.8

func (x *RegisterMobileDownloadHook) Reset()

func (*RegisterMobileDownloadHook) String added in v0.1.8

func (x *RegisterMobileDownloadHook) String() string

type RegisterMobileFileChooserHook added in v0.1.8

type RegisterMobileFileChooserHook struct {
	// contains filtered or unexported fields
}

func (*RegisterMobileFileChooserHook) Descriptor deprecated added in v0.1.8

func (*RegisterMobileFileChooserHook) Descriptor() ([]byte, []int)

Deprecated: Use RegisterMobileFileChooserHook.ProtoReflect.Descriptor instead.

func (*RegisterMobileFileChooserHook) ProtoMessage added in v0.1.8

func (*RegisterMobileFileChooserHook) ProtoMessage()

func (*RegisterMobileFileChooserHook) ProtoReflect added in v0.1.8

func (*RegisterMobileFileChooserHook) Reset added in v0.1.8

func (x *RegisterMobileFileChooserHook) Reset()

func (*RegisterMobileFileChooserHook) String added in v0.1.8

type RegisterNewPageHook added in v0.1.5

type RegisterNewPageHook struct {
	// contains filtered or unexported fields
}

func (*RegisterNewPageHook) Descriptor deprecated added in v0.1.5

func (*RegisterNewPageHook) Descriptor() ([]byte, []int)

Deprecated: Use RegisterNewPageHook.ProtoReflect.Descriptor instead.

func (*RegisterNewPageHook) ProtoMessage added in v0.1.5

func (*RegisterNewPageHook) ProtoMessage()

func (*RegisterNewPageHook) ProtoReflect added in v0.1.5

func (x *RegisterNewPageHook) ProtoReflect() protoreflect.Message

func (*RegisterNewPageHook) Reset added in v0.1.5

func (x *RegisterNewPageHook) Reset()

func (*RegisterNewPageHook) String added in v0.1.5

func (x *RegisterNewPageHook) String() string

type SaveDownloadCommand added in v0.1.7

type SaveDownloadCommand struct {
	DownloadId   string               `protobuf:"bytes,1,opt,name=download_id,json=downloadId,proto3" json:"download_id,omitempty"`
	RetryOptions *CommandRetryOptions `protobuf:"bytes,2,opt,name=retry_options,json=retryOptions,proto3,oneof" json:"retry_options,omitempty"`
	// contains filtered or unexported fields
}

func (*SaveDownloadCommand) Descriptor deprecated added in v0.1.7

func (*SaveDownloadCommand) Descriptor() ([]byte, []int)

Deprecated: Use SaveDownloadCommand.ProtoReflect.Descriptor instead.

func (*SaveDownloadCommand) GetDownloadId added in v0.1.7

func (x *SaveDownloadCommand) GetDownloadId() string

func (*SaveDownloadCommand) GetRetryOptions added in v0.1.7

func (x *SaveDownloadCommand) GetRetryOptions() *CommandRetryOptions

func (*SaveDownloadCommand) ProtoMessage added in v0.1.7

func (*SaveDownloadCommand) ProtoMessage()

func (*SaveDownloadCommand) ProtoReflect added in v0.1.7

func (x *SaveDownloadCommand) ProtoReflect() protoreflect.Message

func (*SaveDownloadCommand) Reset added in v0.1.7

func (x *SaveDownloadCommand) Reset()

func (*SaveDownloadCommand) String added in v0.1.7

func (x *SaveDownloadCommand) String() string

type SaveMobileDownloadCommand added in v0.1.8

type SaveMobileDownloadCommand struct {
	DownloadId   string               `protobuf:"bytes,1,opt,name=download_id,json=downloadId,proto3" json:"download_id,omitempty"`
	RetryOptions *CommandRetryOptions `protobuf:"bytes,2,opt,name=retry_options,json=retryOptions,proto3,oneof" json:"retry_options,omitempty"`
	// contains filtered or unexported fields
}

func (*SaveMobileDownloadCommand) Descriptor deprecated added in v0.1.8

func (*SaveMobileDownloadCommand) Descriptor() ([]byte, []int)

Deprecated: Use SaveMobileDownloadCommand.ProtoReflect.Descriptor instead.

func (*SaveMobileDownloadCommand) GetDownloadId added in v0.1.8

func (x *SaveMobileDownloadCommand) GetDownloadId() string

func (*SaveMobileDownloadCommand) GetRetryOptions added in v0.1.8

func (x *SaveMobileDownloadCommand) GetRetryOptions() *CommandRetryOptions

func (*SaveMobileDownloadCommand) ProtoMessage added in v0.1.8

func (*SaveMobileDownloadCommand) ProtoMessage()

func (*SaveMobileDownloadCommand) ProtoReflect added in v0.1.8

func (*SaveMobileDownloadCommand) Reset added in v0.1.8

func (x *SaveMobileDownloadCommand) Reset()

func (*SaveMobileDownloadCommand) String added in v0.1.8

func (x *SaveMobileDownloadCommand) String() string

type ScreenshotCapturedEvent added in v0.0.54

type ScreenshotCapturedEvent struct {
	PngData []byte `protobuf:"bytes,1,opt,name=png_data,json=pngData,proto3" json:"png_data,omitempty"`
	Note    string `protobuf:"bytes,2,opt,name=note,proto3" json:"note,omitempty"`
	// contains filtered or unexported fields
}

func (*ScreenshotCapturedEvent) Descriptor deprecated added in v0.0.54

func (*ScreenshotCapturedEvent) Descriptor() ([]byte, []int)

Deprecated: Use ScreenshotCapturedEvent.ProtoReflect.Descriptor instead.

func (*ScreenshotCapturedEvent) GetNote added in v0.0.54

func (x *ScreenshotCapturedEvent) GetNote() string

func (*ScreenshotCapturedEvent) GetPngData added in v0.0.54

func (x *ScreenshotCapturedEvent) GetPngData() []byte

func (*ScreenshotCapturedEvent) ProtoMessage added in v0.0.54

func (*ScreenshotCapturedEvent) ProtoMessage()

func (*ScreenshotCapturedEvent) ProtoReflect added in v0.0.54

func (x *ScreenshotCapturedEvent) ProtoReflect() protoreflect.Message

func (*ScreenshotCapturedEvent) Reset added in v0.0.54

func (x *ScreenshotCapturedEvent) Reset()

func (*ScreenshotCapturedEvent) String added in v0.0.54

func (x *ScreenshotCapturedEvent) String() string

type ScreenshotCommand added in v0.0.54

type ScreenshotCommand struct {
	RetryOptions *CommandRetryOptions `protobuf:"bytes,1,opt,name=retry_options,json=retryOptions,proto3,oneof" json:"retry_options,omitempty"`
	FullPage     *bool                `protobuf:"varint,2,opt,name=full_page,json=fullPage,proto3,oneof" json:"full_page,omitempty"`
	// contains filtered or unexported fields
}

func (*ScreenshotCommand) Descriptor deprecated added in v0.0.54

func (*ScreenshotCommand) Descriptor() ([]byte, []int)

Deprecated: Use ScreenshotCommand.ProtoReflect.Descriptor instead.

func (*ScreenshotCommand) GetFullPage added in v0.0.55

func (x *ScreenshotCommand) GetFullPage() bool

func (*ScreenshotCommand) GetRetryOptions added in v0.0.54

func (x *ScreenshotCommand) GetRetryOptions() *CommandRetryOptions

func (*ScreenshotCommand) ProtoMessage added in v0.0.54

func (*ScreenshotCommand) ProtoMessage()

func (*ScreenshotCommand) ProtoReflect added in v0.0.54

func (x *ScreenshotCommand) ProtoReflect() protoreflect.Message

func (*ScreenshotCommand) Reset added in v0.0.54

func (x *ScreenshotCommand) Reset()

func (*ScreenshotCommand) String added in v0.0.54

func (x *ScreenshotCommand) String() string

type SelectorWaitSatisfiedEvent added in v0.0.3

type SelectorWaitSatisfiedEvent struct {
	CssSelector string `protobuf:"bytes,1,opt,name=css_selector,json=cssSelector,proto3" json:"css_selector,omitempty"`
	Visible     bool   `protobuf:"varint,2,opt,name=visible,proto3" json:"visible,omitempty"`
	Note        string `protobuf:"bytes,3,opt,name=note,proto3" json:"note,omitempty"`
	// contains filtered or unexported fields
}

func (*SelectorWaitSatisfiedEvent) Descriptor deprecated added in v0.0.3

func (*SelectorWaitSatisfiedEvent) Descriptor() ([]byte, []int)

Deprecated: Use SelectorWaitSatisfiedEvent.ProtoReflect.Descriptor instead.

func (*SelectorWaitSatisfiedEvent) GetCssSelector added in v0.0.3

func (x *SelectorWaitSatisfiedEvent) GetCssSelector() string

func (*SelectorWaitSatisfiedEvent) GetNote added in v0.0.3

func (x *SelectorWaitSatisfiedEvent) GetNote() string

func (*SelectorWaitSatisfiedEvent) GetVisible added in v0.0.3

func (x *SelectorWaitSatisfiedEvent) GetVisible() bool

func (*SelectorWaitSatisfiedEvent) ProtoMessage added in v0.0.3

func (*SelectorWaitSatisfiedEvent) ProtoMessage()

func (*SelectorWaitSatisfiedEvent) ProtoReflect added in v0.0.3

func (*SelectorWaitSatisfiedEvent) Reset added in v0.0.3

func (x *SelectorWaitSatisfiedEvent) Reset()

func (*SelectorWaitSatisfiedEvent) String added in v0.0.3

func (x *SelectorWaitSatisfiedEvent) String() string

type SessionPingCommand

type SessionPingCommand struct {
	Message string `protobuf:"bytes,1,opt,name=message,proto3" json:"message,omitempty"`
	// contains filtered or unexported fields
}

func (*SessionPingCommand) Descriptor deprecated

func (*SessionPingCommand) Descriptor() ([]byte, []int)

Deprecated: Use SessionPingCommand.ProtoReflect.Descriptor instead.

func (*SessionPingCommand) GetMessage

func (x *SessionPingCommand) GetMessage() string

func (*SessionPingCommand) ProtoMessage

func (*SessionPingCommand) ProtoMessage()

func (*SessionPingCommand) ProtoReflect

func (x *SessionPingCommand) ProtoReflect() protoreflect.Message

func (*SessionPingCommand) Reset

func (x *SessionPingCommand) Reset()

func (*SessionPingCommand) String

func (x *SessionPingCommand) String() string

type SessionPongEvent

type SessionPongEvent struct {
	Message string `protobuf:"bytes,1,opt,name=message,proto3" json:"message,omitempty"`
	// contains filtered or unexported fields
}

func (*SessionPongEvent) Descriptor deprecated

func (*SessionPongEvent) Descriptor() ([]byte, []int)

Deprecated: Use SessionPongEvent.ProtoReflect.Descriptor instead.

func (*SessionPongEvent) GetMessage

func (x *SessionPongEvent) GetMessage() string

func (*SessionPongEvent) ProtoMessage

func (*SessionPongEvent) ProtoMessage()

func (*SessionPongEvent) ProtoReflect

func (x *SessionPongEvent) ProtoReflect() protoreflect.Message

func (*SessionPongEvent) Reset

func (x *SessionPongEvent) Reset()

func (*SessionPongEvent) String

func (x *SessionPongEvent) String() string

type SetFileChooserFilesCommand added in v0.1.7

type SetFileChooserFilesCommand struct {
	FileChooserId string               `protobuf:"bytes,1,opt,name=file_chooser_id,json=fileChooserId,proto3" json:"file_chooser_id,omitempty"`
	FileIds       []string             `protobuf:"bytes,2,rep,name=file_ids,json=fileIds,proto3" json:"file_ids,omitempty"`
	RetryOptions  *CommandRetryOptions `protobuf:"bytes,3,opt,name=retry_options,json=retryOptions,proto3,oneof" json:"retry_options,omitempty"`
	// contains filtered or unexported fields
}

func (*SetFileChooserFilesCommand) Descriptor deprecated added in v0.1.7

func (*SetFileChooserFilesCommand) Descriptor() ([]byte, []int)

Deprecated: Use SetFileChooserFilesCommand.ProtoReflect.Descriptor instead.

func (*SetFileChooserFilesCommand) GetFileChooserId added in v0.1.7

func (x *SetFileChooserFilesCommand) GetFileChooserId() string

func (*SetFileChooserFilesCommand) GetFileIds added in v0.1.8

func (x *SetFileChooserFilesCommand) GetFileIds() []string

func (*SetFileChooserFilesCommand) GetRetryOptions added in v0.1.7

func (x *SetFileChooserFilesCommand) GetRetryOptions() *CommandRetryOptions

func (*SetFileChooserFilesCommand) ProtoMessage added in v0.1.7

func (*SetFileChooserFilesCommand) ProtoMessage()

func (*SetFileChooserFilesCommand) ProtoReflect added in v0.1.7

func (*SetFileChooserFilesCommand) Reset added in v0.1.7

func (x *SetFileChooserFilesCommand) Reset()

func (*SetFileChooserFilesCommand) String added in v0.1.7

func (x *SetFileChooserFilesCommand) String() string

type SetMobileFileChooserFilesCommand added in v0.1.8

type SetMobileFileChooserFilesCommand struct {
	FileChooserId string               `protobuf:"bytes,1,opt,name=file_chooser_id,json=fileChooserId,proto3" json:"file_chooser_id,omitempty"`
	FileIds       []string             `protobuf:"bytes,2,rep,name=file_ids,json=fileIds,proto3" json:"file_ids,omitempty"`
	RetryOptions  *CommandRetryOptions `protobuf:"bytes,3,opt,name=retry_options,json=retryOptions,proto3,oneof" json:"retry_options,omitempty"`
	// contains filtered or unexported fields
}

func (*SetMobileFileChooserFilesCommand) Descriptor deprecated added in v0.1.8

func (*SetMobileFileChooserFilesCommand) Descriptor() ([]byte, []int)

Deprecated: Use SetMobileFileChooserFilesCommand.ProtoReflect.Descriptor instead.

func (*SetMobileFileChooserFilesCommand) GetFileChooserId added in v0.1.8

func (x *SetMobileFileChooserFilesCommand) GetFileChooserId() string

func (*SetMobileFileChooserFilesCommand) GetFileIds added in v0.1.8

func (x *SetMobileFileChooserFilesCommand) GetFileIds() []string

func (*SetMobileFileChooserFilesCommand) GetRetryOptions added in v0.1.8

func (*SetMobileFileChooserFilesCommand) ProtoMessage added in v0.1.8

func (*SetMobileFileChooserFilesCommand) ProtoMessage()

func (*SetMobileFileChooserFilesCommand) ProtoReflect added in v0.1.8

func (*SetMobileFileChooserFilesCommand) Reset added in v0.1.8

func (*SetMobileFileChooserFilesCommand) String added in v0.1.8

type SurfaceSessionClosedEvent added in v0.0.53

type SurfaceSessionClosedEvent struct {
	Reason string `protobuf:"bytes,1,opt,name=reason,proto3" json:"reason,omitempty"`
	// contains filtered or unexported fields
}

func (*SurfaceSessionClosedEvent) Descriptor deprecated added in v0.0.53

func (*SurfaceSessionClosedEvent) Descriptor() ([]byte, []int)

Deprecated: Use SurfaceSessionClosedEvent.ProtoReflect.Descriptor instead.

func (*SurfaceSessionClosedEvent) GetReason added in v0.0.53

func (x *SurfaceSessionClosedEvent) GetReason() string

func (*SurfaceSessionClosedEvent) ProtoMessage added in v0.0.53

func (*SurfaceSessionClosedEvent) ProtoMessage()

func (*SurfaceSessionClosedEvent) ProtoReflect added in v0.0.53

func (*SurfaceSessionClosedEvent) Reset added in v0.0.53

func (x *SurfaceSessionClosedEvent) Reset()

func (*SurfaceSessionClosedEvent) String added in v0.0.53

func (x *SurfaceSessionClosedEvent) String() string

type SurfaceSessionCommand added in v0.0.53

type SurfaceSessionCommand struct {

	// Types that are valid to be assigned to Command:
	//
	//	*SurfaceSessionCommand_LaunchChrome
	//	*SurfaceSessionCommand_OpenContext
	//	*SurfaceSessionCommand_Ping
	//	*SurfaceSessionCommand_Close
	//	*SurfaceSessionCommand_LaunchBrowser
	//	*SurfaceSessionCommand_ConnectMobile
	//	*SurfaceSessionCommand_LaunchApp
	Command isSurfaceSessionCommand_Command `protobuf_oneof:"command"`
	// contains filtered or unexported fields
}

func (*SurfaceSessionCommand) Descriptor deprecated added in v0.0.53

func (*SurfaceSessionCommand) Descriptor() ([]byte, []int)

Deprecated: Use SurfaceSessionCommand.ProtoReflect.Descriptor instead.

func (*SurfaceSessionCommand) GetClose added in v0.0.53

func (*SurfaceSessionCommand) GetCommand added in v0.0.53

func (x *SurfaceSessionCommand) GetCommand() isSurfaceSessionCommand_Command

func (*SurfaceSessionCommand) GetConnectMobile added in v0.0.53

func (x *SurfaceSessionCommand) GetConnectMobile() *ConnectMobileCommand

func (*SurfaceSessionCommand) GetLaunchApp added in v0.0.53

func (x *SurfaceSessionCommand) GetLaunchApp() *LaunchAppCommand

func (*SurfaceSessionCommand) GetLaunchBrowser added in v0.0.53

func (x *SurfaceSessionCommand) GetLaunchBrowser() *LaunchBrowserCommand

func (*SurfaceSessionCommand) GetLaunchChrome added in v0.0.53

func (x *SurfaceSessionCommand) GetLaunchChrome() *LaunchChromeCommand

func (*SurfaceSessionCommand) GetOpenContext added in v0.0.53

func (x *SurfaceSessionCommand) GetOpenContext() *OpenContextCommand

func (*SurfaceSessionCommand) GetPing added in v0.0.53

func (*SurfaceSessionCommand) ProtoMessage added in v0.0.53

func (*SurfaceSessionCommand) ProtoMessage()

func (*SurfaceSessionCommand) ProtoReflect added in v0.0.53

func (x *SurfaceSessionCommand) ProtoReflect() protoreflect.Message

func (*SurfaceSessionCommand) Reset added in v0.0.53

func (x *SurfaceSessionCommand) Reset()

func (*SurfaceSessionCommand) String added in v0.0.53

func (x *SurfaceSessionCommand) String() string

type SurfaceSessionCommand_Close added in v0.0.53

type SurfaceSessionCommand_Close struct {
	Close *CloseSurfaceSessionCommand `protobuf:"bytes,4,opt,name=close,proto3,oneof"`
}

type SurfaceSessionCommand_ConnectMobile added in v0.0.53

type SurfaceSessionCommand_ConnectMobile struct {
	ConnectMobile *ConnectMobileCommand `protobuf:"bytes,6,opt,name=connect_mobile,json=connectMobile,proto3,oneof"`
}

type SurfaceSessionCommand_LaunchApp added in v0.0.53

type SurfaceSessionCommand_LaunchApp struct {
	LaunchApp *LaunchAppCommand `protobuf:"bytes,7,opt,name=launch_app,json=launchApp,proto3,oneof"`
}

type SurfaceSessionCommand_LaunchBrowser added in v0.0.53

type SurfaceSessionCommand_LaunchBrowser struct {
	LaunchBrowser *LaunchBrowserCommand `protobuf:"bytes,5,opt,name=launch_browser,json=launchBrowser,proto3,oneof"`
}

type SurfaceSessionCommand_LaunchChrome added in v0.0.53

type SurfaceSessionCommand_LaunchChrome struct {
	LaunchChrome *LaunchChromeCommand `protobuf:"bytes,1,opt,name=launch_chrome,json=launchChrome,proto3,oneof"`
}

type SurfaceSessionCommand_OpenContext added in v0.0.53

type SurfaceSessionCommand_OpenContext struct {
	OpenContext *OpenContextCommand `protobuf:"bytes,2,opt,name=open_context,json=openContext,proto3,oneof"`
}

type SurfaceSessionCommand_Ping added in v0.0.53

type SurfaceSessionCommand_Ping struct {
	Ping *SessionPingCommand `protobuf:"bytes,3,opt,name=ping,proto3,oneof"`
}

type SurfaceSessionErrorEvent added in v0.0.53

type SurfaceSessionErrorEvent struct {
	Message string `protobuf:"bytes,1,opt,name=message,proto3" json:"message,omitempty"`
	// contains filtered or unexported fields
}

func (*SurfaceSessionErrorEvent) Descriptor deprecated added in v0.0.53

func (*SurfaceSessionErrorEvent) Descriptor() ([]byte, []int)

Deprecated: Use SurfaceSessionErrorEvent.ProtoReflect.Descriptor instead.

func (*SurfaceSessionErrorEvent) GetMessage added in v0.0.53

func (x *SurfaceSessionErrorEvent) GetMessage() string

func (*SurfaceSessionErrorEvent) ProtoMessage added in v0.0.53

func (*SurfaceSessionErrorEvent) ProtoMessage()

func (*SurfaceSessionErrorEvent) ProtoReflect added in v0.0.53

func (x *SurfaceSessionErrorEvent) ProtoReflect() protoreflect.Message

func (*SurfaceSessionErrorEvent) Reset added in v0.0.53

func (x *SurfaceSessionErrorEvent) Reset()

func (*SurfaceSessionErrorEvent) String added in v0.0.53

func (x *SurfaceSessionErrorEvent) String() string

type SurfaceSessionEvent added in v0.0.53

type SurfaceSessionEvent struct {
	SessionId string `protobuf:"bytes,1,opt,name=session_id,json=sessionId,proto3" json:"session_id,omitempty"`
	// Types that are valid to be assigned to Event:
	//
	//	*SurfaceSessionEvent_ChromeLaunched
	//	*SurfaceSessionEvent_ContextOpened
	//	*SurfaceSessionEvent_Pong
	//	*SurfaceSessionEvent_Closed
	//	*SurfaceSessionEvent_Error
	//	*SurfaceSessionEvent_BrowserLaunched
	//	*SurfaceSessionEvent_MobileConnected
	//	*SurfaceSessionEvent_AppLaunched
	Event isSurfaceSessionEvent_Event `protobuf_oneof:"event"`
	// contains filtered or unexported fields
}

func (*SurfaceSessionEvent) Descriptor deprecated added in v0.0.53

func (*SurfaceSessionEvent) Descriptor() ([]byte, []int)

Deprecated: Use SurfaceSessionEvent.ProtoReflect.Descriptor instead.

func (*SurfaceSessionEvent) GetAppLaunched added in v0.0.53

func (x *SurfaceSessionEvent) GetAppLaunched() *AppLaunchedEvent

func (*SurfaceSessionEvent) GetBrowserLaunched added in v0.0.53

func (x *SurfaceSessionEvent) GetBrowserLaunched() *BrowserLaunchedEvent

func (*SurfaceSessionEvent) GetChromeLaunched added in v0.0.53

func (x *SurfaceSessionEvent) GetChromeLaunched() *ChromeLaunchedEvent

func (*SurfaceSessionEvent) GetClosed added in v0.0.53

func (*SurfaceSessionEvent) GetContextOpened added in v0.0.53

func (x *SurfaceSessionEvent) GetContextOpened() *ContextOpenedEvent

func (*SurfaceSessionEvent) GetError added in v0.0.53

func (*SurfaceSessionEvent) GetEvent added in v0.0.53

func (x *SurfaceSessionEvent) GetEvent() isSurfaceSessionEvent_Event

func (*SurfaceSessionEvent) GetMobileConnected added in v0.0.53

func (x *SurfaceSessionEvent) GetMobileConnected() *MobileConnectedEvent

func (*SurfaceSessionEvent) GetPong added in v0.0.53

func (x *SurfaceSessionEvent) GetPong() *SessionPongEvent

func (*SurfaceSessionEvent) GetSessionId added in v0.0.53

func (x *SurfaceSessionEvent) GetSessionId() string

func (*SurfaceSessionEvent) ProtoMessage added in v0.0.53

func (*SurfaceSessionEvent) ProtoMessage()

func (*SurfaceSessionEvent) ProtoReflect added in v0.0.53

func (x *SurfaceSessionEvent) ProtoReflect() protoreflect.Message

func (*SurfaceSessionEvent) Reset added in v0.0.53

func (x *SurfaceSessionEvent) Reset()

func (*SurfaceSessionEvent) String added in v0.0.53

func (x *SurfaceSessionEvent) String() string

type SurfaceSessionEvent_AppLaunched added in v0.0.53

type SurfaceSessionEvent_AppLaunched struct {
	AppLaunched *AppLaunchedEvent `protobuf:"bytes,9,opt,name=app_launched,json=appLaunched,proto3,oneof"`
}

type SurfaceSessionEvent_BrowserLaunched added in v0.0.53

type SurfaceSessionEvent_BrowserLaunched struct {
	BrowserLaunched *BrowserLaunchedEvent `protobuf:"bytes,7,opt,name=browser_launched,json=browserLaunched,proto3,oneof"`
}

type SurfaceSessionEvent_ChromeLaunched added in v0.0.53

type SurfaceSessionEvent_ChromeLaunched struct {
	ChromeLaunched *ChromeLaunchedEvent `protobuf:"bytes,2,opt,name=chrome_launched,json=chromeLaunched,proto3,oneof"`
}

type SurfaceSessionEvent_Closed added in v0.0.53

type SurfaceSessionEvent_Closed struct {
	Closed *SurfaceSessionClosedEvent `protobuf:"bytes,5,opt,name=closed,proto3,oneof"`
}

type SurfaceSessionEvent_ContextOpened added in v0.0.53

type SurfaceSessionEvent_ContextOpened struct {
	ContextOpened *ContextOpenedEvent `protobuf:"bytes,3,opt,name=context_opened,json=contextOpened,proto3,oneof"`
}

type SurfaceSessionEvent_Error added in v0.0.53

type SurfaceSessionEvent_Error struct {
	Error *SurfaceSessionErrorEvent `protobuf:"bytes,6,opt,name=error,proto3,oneof"`
}

type SurfaceSessionEvent_MobileConnected added in v0.0.53

type SurfaceSessionEvent_MobileConnected struct {
	MobileConnected *MobileConnectedEvent `protobuf:"bytes,8,opt,name=mobile_connected,json=mobileConnected,proto3,oneof"`
}

type SurfaceSessionEvent_Pong added in v0.0.53

type SurfaceSessionEvent_Pong struct {
	Pong *SessionPongEvent `protobuf:"bytes,4,opt,name=pong,proto3,oneof"`
}

type TextContentResolvedEvent added in v0.0.3

type TextContentResolvedEvent struct {
	CssSelector string `protobuf:"bytes,1,opt,name=css_selector,json=cssSelector,proto3" json:"css_selector,omitempty"`
	Text        string `protobuf:"bytes,2,opt,name=text,proto3" json:"text,omitempty"`
	Note        string `protobuf:"bytes,3,opt,name=note,proto3" json:"note,omitempty"`
	// contains filtered or unexported fields
}

func (*TextContentResolvedEvent) Descriptor deprecated added in v0.0.3

func (*TextContentResolvedEvent) Descriptor() ([]byte, []int)

Deprecated: Use TextContentResolvedEvent.ProtoReflect.Descriptor instead.

func (*TextContentResolvedEvent) GetCssSelector added in v0.0.3

func (x *TextContentResolvedEvent) GetCssSelector() string

func (*TextContentResolvedEvent) GetNote added in v0.0.3

func (x *TextContentResolvedEvent) GetNote() string

func (*TextContentResolvedEvent) GetText added in v0.0.3

func (x *TextContentResolvedEvent) GetText() string

func (*TextContentResolvedEvent) ProtoMessage added in v0.0.3

func (*TextContentResolvedEvent) ProtoMessage()

func (*TextContentResolvedEvent) ProtoReflect added in v0.0.3

func (x *TextContentResolvedEvent) ProtoReflect() protoreflect.Message

func (*TextContentResolvedEvent) Reset added in v0.0.3

func (x *TextContentResolvedEvent) Reset()

func (*TextContentResolvedEvent) String added in v0.0.3

func (x *TextContentResolvedEvent) String() string

type UnimplementedEngineServiceServer

type UnimplementedEngineServiceServer struct{}

UnimplementedEngineServiceServer must be embedded to have forward compatible implementations.

NOTE: this should be embedded by value instead of pointer to avoid a nil pointer dereference when methods are called.

func (UnimplementedEngineServiceServer) ContextSession added in v0.0.53

func (UnimplementedEngineServiceServer) Ping

func (UnimplementedEngineServiceServer) SurfaceSession added in v0.0.53

type UnsafeEngineServiceServer

type UnsafeEngineServiceServer interface {
	// contains filtered or unexported methods
}

UnsafeEngineServiceServer may be embedded to opt out of forward compatibility for this service. Use of this interface is not recommended, as added methods to EngineServiceServer will result in compilation errors.

type UploadFileChunkCommand added in v0.1.8

type UploadFileChunkCommand struct {
	TransferId string `protobuf:"bytes,1,opt,name=transfer_id,json=transferId,proto3" json:"transfer_id,omitempty"`
	Name       string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	Offset     uint64 `protobuf:"varint,3,opt,name=offset,proto3" json:"offset,omitempty"`
	Data       []byte `protobuf:"bytes,4,opt,name=data,proto3" json:"data,omitempty"`
	Last       bool   `protobuf:"varint,5,opt,name=last,proto3" json:"last,omitempty"`
	// contains filtered or unexported fields
}

func (*UploadFileChunkCommand) Descriptor deprecated added in v0.1.8

func (*UploadFileChunkCommand) Descriptor() ([]byte, []int)

Deprecated: Use UploadFileChunkCommand.ProtoReflect.Descriptor instead.

func (*UploadFileChunkCommand) GetData added in v0.1.8

func (x *UploadFileChunkCommand) GetData() []byte

func (*UploadFileChunkCommand) GetLast added in v0.1.8

func (x *UploadFileChunkCommand) GetLast() bool

func (*UploadFileChunkCommand) GetName added in v0.1.8

func (x *UploadFileChunkCommand) GetName() string

func (*UploadFileChunkCommand) GetOffset added in v0.1.8

func (x *UploadFileChunkCommand) GetOffset() uint64

func (*UploadFileChunkCommand) GetTransferId added in v0.1.8

func (x *UploadFileChunkCommand) GetTransferId() string

func (*UploadFileChunkCommand) ProtoMessage added in v0.1.8

func (*UploadFileChunkCommand) ProtoMessage()

func (*UploadFileChunkCommand) ProtoReflect added in v0.1.8

func (x *UploadFileChunkCommand) ProtoReflect() protoreflect.Message

func (*UploadFileChunkCommand) Reset added in v0.1.8

func (x *UploadFileChunkCommand) Reset()

func (*UploadFileChunkCommand) String added in v0.1.8

func (x *UploadFileChunkCommand) String() string

type WaitForHookCommand added in v0.1.5

type WaitForHookCommand struct {
	HookId       string               `protobuf:"bytes,1,opt,name=hook_id,json=hookId,proto3" json:"hook_id,omitempty"`
	RetryOptions *CommandRetryOptions `protobuf:"bytes,2,opt,name=retry_options,json=retryOptions,proto3,oneof" json:"retry_options,omitempty"`
	// contains filtered or unexported fields
}

func (*WaitForHookCommand) Descriptor deprecated added in v0.1.5

func (*WaitForHookCommand) Descriptor() ([]byte, []int)

Deprecated: Use WaitForHookCommand.ProtoReflect.Descriptor instead.

func (*WaitForHookCommand) GetHookId added in v0.1.5

func (x *WaitForHookCommand) GetHookId() string

func (*WaitForHookCommand) GetRetryOptions added in v0.1.5

func (x *WaitForHookCommand) GetRetryOptions() *CommandRetryOptions

func (*WaitForHookCommand) ProtoMessage added in v0.1.5

func (*WaitForHookCommand) ProtoMessage()

func (*WaitForHookCommand) ProtoReflect added in v0.1.5

func (x *WaitForHookCommand) ProtoReflect() protoreflect.Message

func (*WaitForHookCommand) Reset added in v0.1.5

func (x *WaitForHookCommand) Reset()

func (*WaitForHookCommand) String added in v0.1.5

func (x *WaitForHookCommand) String() string

type WaitForSelectorCommand added in v0.0.3

type WaitForSelectorCommand struct {
	CssSelector  string               `protobuf:"bytes,1,opt,name=css_selector,json=cssSelector,proto3" json:"css_selector,omitempty"`
	Visible      *bool                `protobuf:"varint,2,opt,name=visible,proto3,oneof" json:"visible,omitempty"`
	RetryOptions *CommandRetryOptions `protobuf:"bytes,3,opt,name=retry_options,json=retryOptions,proto3,oneof" json:"retry_options,omitempty"`
	// contains filtered or unexported fields
}

func (*WaitForSelectorCommand) Descriptor deprecated added in v0.0.3

func (*WaitForSelectorCommand) Descriptor() ([]byte, []int)

Deprecated: Use WaitForSelectorCommand.ProtoReflect.Descriptor instead.

func (*WaitForSelectorCommand) GetCssSelector added in v0.0.3

func (x *WaitForSelectorCommand) GetCssSelector() string

func (*WaitForSelectorCommand) GetRetryOptions added in v0.0.3

func (x *WaitForSelectorCommand) GetRetryOptions() *CommandRetryOptions

func (*WaitForSelectorCommand) GetVisible added in v0.0.3

func (x *WaitForSelectorCommand) GetVisible() bool

func (*WaitForSelectorCommand) ProtoMessage added in v0.0.3

func (*WaitForSelectorCommand) ProtoMessage()

func (*WaitForSelectorCommand) ProtoReflect added in v0.0.3

func (x *WaitForSelectorCommand) ProtoReflect() protoreflect.Message

func (*WaitForSelectorCommand) Reset added in v0.0.3

func (x *WaitForSelectorCommand) Reset()

func (*WaitForSelectorCommand) String added in v0.0.3

func (x *WaitForSelectorCommand) String() string

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL