@bigbinary/neeto-playwright-commons 1.22.42 → 1.22.44
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/index.cjs.js +2668 -2901
- package/index.cjs.js.map +1 -1
- package/index.d.ts +3 -1
- package/index.js +2668 -2901
- package/index.js.map +1 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -93,6 +93,7 @@ interface ToggleElementProps {
|
|
|
93
93
|
interface WaitForPageLoadParams {
|
|
94
94
|
visibilityTimeout: number;
|
|
95
95
|
customPageContext: Page | undefined;
|
|
96
|
+
waitForOption: "serial" | "parallel";
|
|
96
97
|
}
|
|
97
98
|
type ApiRequest = (props: ApiRequestProps & Record<string, unknown>) => Promise<APIResponse | undefined>;
|
|
98
99
|
interface FieldValue {
|
|
@@ -260,7 +261,8 @@ declare class CustomCommands {
|
|
|
260
261
|
*/
|
|
261
262
|
waitForPageLoad: ({
|
|
262
263
|
visibilityTimeout,
|
|
263
|
-
customPageContext
|
|
264
|
+
customPageContext,
|
|
265
|
+
waitForOption
|
|
264
266
|
}?: Partial<WaitForPageLoadParams>) => Promise<void>;
|
|
265
267
|
/**
|
|
266
268
|
*
|