2

編集:問題を示すYouTubeビデオは次のとおりです。

https://youtu.be/MIZjHKCVr1s

--headless フラグを使用してクロムでセレンを実行していますが、 --headless を使用するとシステムプロキシが無視されるようです。プロキシをバイパスしない前にこれを Mac でテストしましたが、Mac の Windows 10 VM ではプロキシをバイパスしているようです。

コード:

from selenium import webdriver
from selenium.webdriver.chrome.options import Options
options = Options()
options.add_argument('--headless')
options.add_argument('--hide-scrollbars')
options.add_argument('--disable-gpu')
driver = webdriver.Chrome(chrome_options = options)

driver.get('https://wtfismyip.com')
print(driver.find_element_by_tag_name('body').text)

ヘッドレスフラグを使用しない場合。システム プロキシの IP が表示されますが、使用すると実際の IP が表示されます。

4

1 に答える 1