This commit is contained in:
github-actions[bot] 2022-03-23 11:30:42 -07:00 коммит произвёл GitHub
Родитель b69d0566bb
Коммит 2d5762c842
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 18 добавлений и 1 удалений

Просмотреть файл

@ -23,7 +23,7 @@
},
{
"name": "webkit",
"revision": "1619",
"revision": "1620",
"installByDefault": true,
"revisionOverrides": {
"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;
}
/**
* 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.
*/
@ -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.createPage": Playwright.createPageParameters;
"Playwright.navigate": Playwright.navigateParameters;
"Playwright.grantFileReadAccess": Playwright.grantFileReadAccessParameters;
"Playwright.setIgnoreCertificateErrors": Playwright.setIgnoreCertificateErrorsParameters;
"Playwright.getAllCookies": Playwright.getAllCookiesParameters;
"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.createPage": Playwright.createPageReturnValue;
"Playwright.navigate": Playwright.navigateReturnValue;
"Playwright.grantFileReadAccess": Playwright.grantFileReadAccessReturnValue;
"Playwright.setIgnoreCertificateErrors": Playwright.setIgnoreCertificateErrorsReturnValue;
"Playwright.getAllCookies": Playwright.getAllCookiesReturnValue;
"Playwright.setCookies": Playwright.setCookiesReturnValue;