feat: add selector-based browser actions
This commit is contained in:
@@ -14,7 +14,8 @@ export type BrowserFormField = {
|
||||
export type BrowserActRequest =
|
||||
| {
|
||||
kind: "click";
|
||||
ref: string;
|
||||
ref?: string;
|
||||
selector?: string;
|
||||
targetId?: string;
|
||||
doubleClick?: boolean;
|
||||
button?: string;
|
||||
@@ -22,7 +23,8 @@ export type BrowserActRequest =
|
||||
}
|
||||
| {
|
||||
kind: "type";
|
||||
ref: string;
|
||||
ref?: string;
|
||||
selector?: string;
|
||||
text: string;
|
||||
targetId?: string;
|
||||
submit?: boolean;
|
||||
|
||||
Reference in New Issue
Block a user