mirror of
https://github.com/microsoft/playwright.git
synced 2025-06-26 21:40:17 +00:00
feat(webkit): roll to r1620 (#12971)
This commit is contained in:
parent
b69d0566bb
commit
2d5762c842
@ -23,7 +23,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "webkit",
|
"name": "webkit",
|
||||||
"revision": "1619",
|
"revision": "1620",
|
||||||
"installByDefault": true,
|
"installByDefault": true,
|
||||||
"revisionOverrides": {
|
"revisionOverrides": {
|
||||||
"mac10.14": "1446",
|
"mac10.14": "1446",
|
||||||
|
|||||||
@ -7262,6 +7262,21 @@ the top of the viewport and Y increases as it proceeds towards the bottom of the
|
|||||||
*/
|
*/
|
||||||
loaderId?: Network.LoaderId;
|
loaderId?: Network.LoaderId;
|
||||||
}
|
}
|
||||||
|
/**
|
||||||
|
* Grants read access for the specified files to the web process of the page.
|
||||||
|
*/
|
||||||
|
export type grantFileReadAccessParameters = {
|
||||||
|
/**
|
||||||
|
* Unique identifier of the page proxy.
|
||||||
|
*/
|
||||||
|
pageProxyId: PageProxyID;
|
||||||
|
/**
|
||||||
|
* Id of the frame to navigate.
|
||||||
|
*/
|
||||||
|
paths: string[];
|
||||||
|
}
|
||||||
|
export type grantFileReadAccessReturnValue = {
|
||||||
|
}
|
||||||
/**
|
/**
|
||||||
* Change whether all certificate errors should be ignored.
|
* Change whether all certificate errors should be ignored.
|
||||||
*/
|
*/
|
||||||
@ -9096,6 +9111,7 @@ the top of the viewport and Y increases as it proceeds towards the bottom of the
|
|||||||
"Playwright.deleteContext": Playwright.deleteContextParameters;
|
"Playwright.deleteContext": Playwright.deleteContextParameters;
|
||||||
"Playwright.createPage": Playwright.createPageParameters;
|
"Playwright.createPage": Playwright.createPageParameters;
|
||||||
"Playwright.navigate": Playwright.navigateParameters;
|
"Playwright.navigate": Playwright.navigateParameters;
|
||||||
|
"Playwright.grantFileReadAccess": Playwright.grantFileReadAccessParameters;
|
||||||
"Playwright.setIgnoreCertificateErrors": Playwright.setIgnoreCertificateErrorsParameters;
|
"Playwright.setIgnoreCertificateErrors": Playwright.setIgnoreCertificateErrorsParameters;
|
||||||
"Playwright.getAllCookies": Playwright.getAllCookiesParameters;
|
"Playwright.getAllCookies": Playwright.getAllCookiesParameters;
|
||||||
"Playwright.setCookies": Playwright.setCookiesParameters;
|
"Playwright.setCookies": Playwright.setCookiesParameters;
|
||||||
@ -9397,6 +9413,7 @@ the top of the viewport and Y increases as it proceeds towards the bottom of the
|
|||||||
"Playwright.deleteContext": Playwright.deleteContextReturnValue;
|
"Playwright.deleteContext": Playwright.deleteContextReturnValue;
|
||||||
"Playwright.createPage": Playwright.createPageReturnValue;
|
"Playwright.createPage": Playwright.createPageReturnValue;
|
||||||
"Playwright.navigate": Playwright.navigateReturnValue;
|
"Playwright.navigate": Playwright.navigateReturnValue;
|
||||||
|
"Playwright.grantFileReadAccess": Playwright.grantFileReadAccessReturnValue;
|
||||||
"Playwright.setIgnoreCertificateErrors": Playwright.setIgnoreCertificateErrorsReturnValue;
|
"Playwright.setIgnoreCertificateErrors": Playwright.setIgnoreCertificateErrorsReturnValue;
|
||||||
"Playwright.getAllCookies": Playwright.getAllCookiesReturnValue;
|
"Playwright.getAllCookies": Playwright.getAllCookiesReturnValue;
|
||||||
"Playwright.setCookies": Playwright.setCookiesReturnValue;
|
"Playwright.setCookies": Playwright.setCookiesReturnValue;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user