doc-detective-common 4.25.1 → 4.26.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +15966 -4090
- package/dist/schemas/schemas.json +15966 -4090
- package/dist/types/generated/closeSurface_v3.d.ts +2 -2
- package/dist/types/generated/dragAndDrop_v3.d.ts +1 -1
- package/dist/types/generated/goTo_v3.d.ts +1 -1
- package/dist/types/generated/record_v3.d.ts +1 -1
- package/dist/types/generated/runBrowserScript_v3.d.ts +1 -1
- package/dist/types/generated/screenshot_v3.d.ts +1 -1
- package/dist/types/generated/startSurface_v3.d.ts +317 -3
- package/dist/types/generated/startSurface_v3.d.ts.map +1 -1
- package/dist/types/generated/step_v3.d.ts +329 -15
- package/dist/types/generated/step_v3.d.ts.map +1 -1
- package/dist/types/generated/surface_v3.d.ts +1 -1
- package/dist/types/generated/swipe_v3.d.ts +2 -2
- package/dist/types/generated/test_v3.d.ts +669 -41
- package/dist/types/generated/test_v3.d.ts.map +1 -1
- package/dist/types/generated/type_v3.d.ts +1 -1
- package/package.json +1 -1
|
@@ -124,7 +124,7 @@ export interface ProcessSurface {
|
|
|
124
124
|
}
|
|
125
125
|
export interface BrowserSurface {
|
|
126
126
|
/**
|
|
127
|
-
* Browser engine. Selects the browser surface with that engine (or the one named by `name`). A goTo step opens the browser if it isn't open yet
|
|
127
|
+
* Browser engine. Selects the browser surface with that engine (or the one named by `name`). A goTo step opens the browser if it isn't open yet — you can also open one explicitly with `startSurface`; other steps require it to already be open.
|
|
128
128
|
*/
|
|
129
129
|
browser: "chrome" | "firefox" | "safari" | "webkit" | "edge";
|
|
130
130
|
/**
|