Hỏi đáp
Chia sẻ kiến thức, cùng nhau phát triển
Selenium C# - Proxy Auto Auth
00:15 27-02-2019
1.914 lượt xem
0 bình luận
Mình dùng Chrome extension để tự động gõ user và pass. Nhưng 1 vài lần nó không tự login được. Liệu có phải do proxy nữa k? Proxy của mình vẫn hoạt động bình thường. Đoạn Js mình dùng:
var retry = 3;
chrome.webRequest.onAuthRequired.addListener(
function handler(details) {
if (--retry < 0)
return {cancel: true};
return {authCredentials: {username: username, password: password}};
},
{urls: ["<all_urls>"]},
['blocking']
);