0
私はプロキシを使用すると、私のいくつかのWebページ(などのFacebook)が非常にゆっくりと読み込みます。これはスクリプトです:プロキシを設定すると、フェイスブックがゆっくり開きます
import random import time import os import sys from selenium import webdriver chromedriver = "chromedriver.exe" os.environ["webdriver.chrome.driver"] = chromedriver from selenium.webdriver.common.by import By from selenium.webdriver.common.keys import Keys from selenium.webdriver.support.ui import Select from selenium.common.exceptions import NoSuchElementException from selenium.common.exceptions import NoAlertPresentException import unittest from time import gmtime, strftime from datetime import datetime from random import randint PROXY = "114.77.67.32:22" # IP:PORT or HOST:PORT chrome_options = webdriver.ChromeOptions() chrome_options.add_argument('--proxy-server=http://%s' % PROXY) driver = webdriver.Chrome(chrome_options=chrome_options) driver.get("http://web.facebook.com")
は、別のIPを持つページを訪問する良い方法ですか?