Selenium Webdriver - 使用Chrome扩展程序设置Cookie

时间:2018-06-14 22:15:38

标签: javascript google-chrome selenium-webdriver google-chrome-extension

当我获得Selenium Webdriver实例打开页面时,我正在尝试使用chrome扩展来设置cookie。我尝试了在不同的stackoverflow帖子中建议的各种方法,但是当我打开页面检查器时,它们都没有显示。任何指针都将非常感激。

清单 - 我确保列出任何网址的权限

{
    "name": "Test",
    "description": "Test",
    "version": "2.0",
    "manifest_version": 2,
    "permissions": ["cookies", "<all_urls>", "background", "tabs", "webRequest", "webRequestBlocking", "http://*/*"],    
    "background": {
        "scripts": ["background.js"],
        "persistent": true
    } ,
    "content_scripts": [
      {
        "matches": ["*://*/*"],
        "js": ["script.js"]          
      }
    ] 
}

后台JS - 我有几次创建cookie的尝试,当我检查网页或背景页面时,它们都没有显示。

chrome.cookies.set({ url: "https://google.com/", name: "CookieVar0", value: "123" });

chrome.webRequest.onBeforeRequest.addListener(
        function(details) {

        chrome.tabs.query({active: true, currentWindow: true}, function(tabs) {
          chrome.tabs.sendMessage(tabs[0].id, {test: testVar}, function(response) {
            console.log("Response connected");
            setCookie();
            chrome.cookies.set({ url: "http://example.google.com", name: "CookieVar1", value: "123" });
          });
        });

        }, 
        ...

function setCookie(){
    console.log("Set Cookie");

    chrome.cookies.set({"name":"Sample1","url":"http://developer.chrome.com/extensions/cookies.html","value":"Dummy Data"},function (cookie){
        console.log(JSON.stringify(cookie));
        console.log(chrome.extension.lastError);
        console.log(chrome.runtime.lastError);
    });

}

内容脚本 - 我已经读过你通常不应该尝试在内容脚本中设置cookie,但有些帖子提到了它,所以我还是尝试过。

window.addEventListener('load', loadEvent => {
    console.log("Test 321");
    // window.customlog = "Updated window!!!";
    let window = loadEvent.currentTarget;
    window.document.title='You changed me!';
    chrome.cookies.set({ url: "http://example.google.com", name: "CookieVar3", value: "123" });
});

1 个答案:

答案 0 :(得分:0)

所以它不是一个完整的答案,但我意识到无论你在cookie中放入什么网址,它都会在您运行扩展程序的页面的网址下提交。所以chrome.cookies.set({url:&#34; https://google.com/&#34;,名称:&#34; CookieVar0&#34;,值:&#34; 123&#34;});虽然工作正常,但并不是在{&#34; https://google.com/&#34;但是&#34;当前页面网址&#34;代替。一个设置&#34; Sample1&#34;直到我改变格式以匹配一个设置CookieVar0然后它很好。

所以我仍然无法在任何地方按照要求工作,但至少有一些进展。希望这有助于某人!