Skip to content

Commit 5516009

Browse files
codebyterepull[bot]
authored andcommitted
fix: Storage.{get|set|clear}Cookies via CDP not working (#41718)
1 parent 0019db0 commit 5516009

File tree

3 files changed

+42
-0
lines changed

3 files changed

+42
-0
lines changed

shell/browser/ui/devtools_manager_delegate.cc

+5
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
#include "net/socket/stream_socket.h"
2929
#include "net/socket/tcp_server_socket.h"
3030
#include "shell/browser/browser.h"
31+
#include "shell/browser/electron_browser_context.h"
3132
#include "shell/common/electron_paths.h"
3233
#include "third_party/inspector_protocol/crdtp/dispatch.h"
3334
#include "ui/base/resource/resource_bundle.h"
@@ -139,4 +140,8 @@ bool DevToolsManagerDelegate::HasBundledFrontendResources() {
139140
return true;
140141
}
141142

143+
content::BrowserContext* DevToolsManagerDelegate::GetDefaultBrowserContext() {
144+
return ElectronBrowserContext::From("", false);
145+
}
146+
142147
} // namespace electron

shell/browser/ui/devtools_manager_delegate.h

+5
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@
1010
#include "base/compiler_specific.h"
1111
#include "content/public/browser/devtools_manager_delegate.h"
1212

13+
namespace content {
14+
class BrowserContext;
15+
}
16+
1317
namespace electron {
1418

1519
class DevToolsManagerDelegate : public content::DevToolsManagerDelegate {
@@ -33,6 +37,7 @@ class DevToolsManagerDelegate : public content::DevToolsManagerDelegate {
3337
TargetType target_type) override;
3438
std::string GetDiscoveryPageHTML() override;
3539
bool HasBundledFrontendResources() override;
40+
content::BrowserContext* GetDefaultBrowserContext() override;
3641
};
3742

3843
} // namespace electron

spec/api-debugger-spec.ts

+32
Original file line numberDiff line numberDiff line change
@@ -177,6 +177,38 @@ describe('debugger module', () => {
177177
await loadingFinished;
178178
});
179179

180+
it('can get and set cookies using the Storage API', async () => {
181+
await w.webContents.loadURL('about:blank');
182+
w.webContents.debugger.attach('1.1');
183+
184+
await w.webContents.debugger.sendCommand('Storage.clearCookies', {});
185+
await w.webContents.debugger.sendCommand('Storage.setCookies', {
186+
cookies: [
187+
{
188+
name: 'cookieOne',
189+
value: 'cookieValueOne',
190+
url: 'https://cookieone.com'
191+
},
192+
{
193+
name: 'cookieTwo',
194+
value: 'cookieValueTwo',
195+
url: 'https://cookietwo.com'
196+
}
197+
]
198+
});
199+
200+
const { cookies } = await w.webContents.debugger.sendCommand('Storage.getCookies', {});
201+
expect(cookies).to.have.lengthOf(2);
202+
203+
const cookieOne = cookies.find((cookie: any) => cookie.name === 'cookieOne');
204+
expect(cookieOne.domain).to.equal('cookieone.com');
205+
expect(cookieOne.value).to.equal('cookieValueOne');
206+
207+
const cookieTwo = cookies.find((cookie: any) => cookie.name === 'cookieTwo');
208+
expect(cookieTwo.domain).to.equal('cookietwo.com');
209+
expect(cookieTwo.value).to.equal('cookieValueTwo');
210+
});
211+
180212
it('uses empty sessionId by default', async () => {
181213
w.webContents.loadURL('about:blank');
182214
w.webContents.debugger.attach();

0 commit comments

Comments
 (0)