Documentation
¶
Index ¶
Constants ¶
View Source
const Name = "web"
Name of executor
Variables ¶
This section is empty.
Functions ¶
Types ¶
type Action ¶
type Action struct {
Click string `yaml:"search,omitempty"`
Fill []Fill `yaml:"fill,omitempty"`
Find string `yaml:"find,omitempty"`
}
Action represents what can be done with web executor
type Executor ¶
type Executor struct {
Action Action `json:"action,omitempty" yaml:"action"`
Screenshot string `json:"screenshot,omitempty" yaml:"screenshot"`
}
Executor struct
type Result ¶
type Result struct {
Executor Executor `json:"executor,omitempty" yaml:"executor,omitempty"`
Find int `json:"find,omitempty" yaml:"find,omitempty"`
HTML string `json:"html,omitempty" yaml:"html,omitempty"`
TimeSeconds float64 `json:"timeseconds,omitempty" yaml:"timeseconds,omitempty"`
TimeHuman string `json:"timehuman,omitempty" yaml:"timehuman,omitempty"`
Title string `json:"title,omitempty" yaml:"title,omitempty"`
URL string `json:"url,omitempty" yaml:"url,omitempty"`
}
Result represents a step result
Click to show internal directories.
Click to hide internal directories.