我刚刚开始编程Python。我想创建一个机器人。这是我的代码。
一切正常,直到while RUNNING == True:。之后输入配置文件,并显示错误。其他信息,所以我可以使用Firefox,我需要下载geckodriver!任何帮助或建议在哪里寻找,将不胜感激。

import random, time, requests
from selenium import webdriver
from selenium.webdriver.common.proxy import *
from bs4 import BeautifulSoup
import selenium.webdriver.chrome.service
import webbrowser

USER_AGENT_FILE = './user_agent.txt'
RUNNING = True

def LoadUserAgents(uafile=USER_AGENT_FILE):
    uas = []
    with open(uafile, 'rb') as uaf:
        for ua in uaf.readlines():
            if ua:
                uas.append(ua.strip() [1:-1-1])
    random.shuffle(uas)
    return uas

uas = LoadUserAgents()

while RUNNING == True:
    profile = webdriver.FirefoxProfile()
    profile.set_preference('general.usragent.override', random.choice(uas))
    driver = webdriver.Firefox(firefox_profile=profile)
    driver.get('http://whatmyua.com')
    input('Press enter to continue')
    driver.quit()

最佳答案

您正在以二进制模式打开文件;您需要文本模式,因此请使用open(uafile, 'r')

另外,一些未经请求的代码审查:

while RUNNING == True:

是相同的:

while RUNNING:

09-04 22:44