我希望能够编写一个instagram机器人来自动评论图片。
我已经弄清楚了普通的bot部分,但是我不知道如何使用tor webdriver,所以我将能够定期更改我的IP地址,因此instagram无法阻止我。

from tbselenium.tbdriver import TorBrowserDriver
with TorBrowserDriver(r"\\C:\\Users\\simon\\Desktop\\Tor Browser\\Browser\\TorBrowser") as driver:
    driver.get("https://www.google.com")


我尝试过但是它说:

tbselenium.exceptions.TBDriverPathError: TBB path is not a directory \\C:\\Users\\simon\\Desktop\\Tor Browser\\Browser\\TorBrowser\\


任何答案都很感激!!
:)

编辑:

from tbselenium.tbdriver import TorBrowserDriver
with TorBrowserDriver(r"\\C:\\Users\\simon\\Desktop\\Tor Browser\\Browser\\TorBrowser") as driver:
driver.get("google.com")



tbselenium.exceptions.TBDriverPathError: TBB path is not a directory \\C:\\Users\\simon\\Desktop\\Tor Browser\\Browser\\TorBrowser\\

最佳答案

对于标准selenium软件包,这是不可能的。

您可以尝试使用this github存储库,该存储库可以通过pip install tbselenium安装

请注意,我自己还没有尝试过。

10-05 18:11