We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b81f644 commit cb913f1Copy full SHA for cb913f1
src/protocol-parser/generated/webdriver-bidi.ts
@@ -2338,6 +2338,7 @@ export namespace Script {
2338
.array(BrowsingContext.BrowsingContextSchema)
2339
.min(1)
2340
.optional(),
2341
+ userContexts: z.array(Browser.UserContextSchema).min(1).optional(),
2342
sandbox: z.string().optional(),
2343
}),
2344
);
src/protocol/generated/webdriver-bidi.ts
@@ -1840,6 +1840,7 @@ export namespace Script {
1840
BrowsingContext.BrowsingContext,
1841
...BrowsingContext.BrowsingContext[],
1842
];
1843
+ userContexts?: [Browser.UserContext, ...Browser.UserContext[]];
1844
sandbox?: string;
1845
};
1846
}
0 commit comments