在 Python Selenium Webdriver 中设置区域?

Setting the region in the Python Selenium Webdriver?

我目前正在制作一个从 Steam 销售搜索页面获取价格和折扣等的程序,但是所有价格都以美元为单位,我需要它们以英镑为单位。我是 Python 和 Selenium 的新手,我自己无法解决这个问题,而且我还没有看到其他人有类似的问题。

我正在使用 Selenium webdriver,不知道如何配置它的区域,但我假设它可能需要输入到 Chrome 选项中,但我不知道不知道。

提前致谢。

您可以为此使用代理服务器,如 this question 的答案中所述:

from selenium import webdriver

PROXY = "23.23.23.23:3128" # IP:PORT or HOST:PORT

chrome_options = webdriver.ChromeOptions()
chrome_options.add_argument('--proxy-server=%s' % PROXY)

chrome = webdriver.Chrome(options=chrome_options)
chrome.get("http://whatismyipaddress.com")

&cc=US&currency=1 添加到 url。如果你不给出具体的 url.
,我不知道哪个会起作用 能举个例子吗url?