python - Selenium 2.53.5 httplib.BadStatusLine : '' Python

标签 python selenium selenium-chromedriver httplib

我正在尝试使用 Python 2.7 中的 Selenium 2.53.5 以在线表单自动注册序列号。该脚本已经运行了 2 个多月,但昨天我在运行它时开始收到错误:httplib.BadStatusLine: ''。有任何已知的修复方法吗?我读过前导/尾随换行符可能会扰乱 url 的检索,但我似乎无法识别问题。

代码:

import sys
import time

from selenium import webdriver
from selenium.webdriver.chrome.options import Options

class SerialSet:
    def __init__(self, fileName, driverPath, user, password):
        self.fn = fileName
        self.failedSerials = []
        self.driver = webdriver.Chrome(driverPath)
        self.aloSuccess = False
        self.user = user
        self.password = password

    def parseSerialFile(self):
        with open(self.fn, 'r') as f:
            self.serials = [line.strip() for line in f]

    def setCountrySN(self, serial, driver):
        driver.find_element_by_xpath("//select/option[@value='USA']").click()
        driver.find_element_by_id("serialno").send_keys(serial)
        driver.find_element_by_xpath("//input[@value='Continue'][@type='button']").click()

    def submitState(self, driver):
        driver.find_element_by_xpath("//select/option[@value='CT']").click()
        driver.find_element_by_id("Continue1").click()

    def login(self, driver):
        driver.find_element_by_xpath("//*[@id='accountname']").send_keys(self.user)
        driver.find_element_by_xpath("//*[@id='accountpassword']").send_keys(self.password)
        driver.find_element_by_xpath("//*[@id='signInHyperLink']").click()

    def initiateSN(self, serial, driver):
        # select country and enter serialno
        driver.get("http://supportform.apple.com/201110/")
        self.setCountrySN(serial, driver)

        # enter login
        time.sleep(3)
        if driver.current_url == "http://supportform.apple.com/201110/":
            return False
        self.login(driver)

        # select state and continue
        time.sleep(3)
        self.submitState(driver)

        # final submit
        time.sleep(3)
        driver.find_element_by_id("finalContinue").click()
        return True

    def newSN(self, serial, driver):
        # select country and enter serialno
        driver.get("http://supportform.apple.com/201110/")
        self.setCountrySN(serial, driver)

        # select state and continue
        time.sleep(3)
        if driver.current_url == "http://supportform.apple.com/201110/":
            return False
        self.submitState(driver)

        # final submit
        time.sleep(3)
        driver.find_element_by_id("finalContinue").click()
        return True

    def automateSerials(self):
        for i in self.serials:
            if self.aloSuccess == False:
                if not self.initiateSN(i, self.driver):
                    self.failedSerials.append(i)
                    del i
                else:
                    self.aloSuccess = True
            else:
                if not self.newSN(i, self.driver):
                    self.failedSerials.append(i)
                    del i
        self.driver.quit()
        print(str(len(self.serials) - len(self.failedSerials)) + ":" + str(len(self.serials)))
def main():
    newSet = SerialSet(sys.argv[1], sys.argv[2], sys.argv[3], sys.argv[4])
    newSet.parseSerialFile()
    newSet.automateSerials()

if __name__ == "__main__":
    main()

错误:

Traceback (most recent call last):
  File "automate.py", line 90, in <module>
    main()
  File "automate.py", line 85, in main
    newSet = SerialSet(sys.argv[1], sys.argv[2], sys.argv[3], sys.argv[4])
  File "automate.py", line 11, in __init__
    self.driver = webdriver.Chrome(driverPath)
  File "/Library/Python/2.7/site-    packages/selenium/webdriver/chrome/webdriver.py", line 67, in __init__
    desired_capabilities=desired_capabilities)
  File "/Library/Python/2.7/site-packages/selenium/webdriver/remote/webdriver.py", line 90, in __init__
self.start_session(desired_capabilities, browser_profile)
  File "/Library/Python/2.7/site-packages/selenium/webdriver/remote/webdriver.py", line 177, in start_session
response = self.execute(Command.NEW_SESSION, capabilities)
  File "/Library/Python/2.7/site-packages/selenium/webdriver/remote/webdriver.py", line 234, in execute
response = self.command_executor.execute(driver_command, params)
  File "/Library/Python/2.7/site-packages/selenium/webdriver/remote/remote_connection.py", line 401, in execute
return self._request(command_info[0], url, body=data)
  File "/Library/Python/2.7/site-packages/selenium/webdriver/remote/remote_connection.py", line 432, in _request
    resp = self._conn.getresponse()
  File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/httplib.py", line 1132, in getresponse
response.begin()
  File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/httplib.py", line 453, in begin
version, status, reason = self._read_status()
  File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/httplib.py", line 417, in _read_status
raise BadStatusLine(line)
httplib.BadStatusLine: ''

最佳答案

确保您使用最新版本的 chromedriver: http://chromedriver.storage.googleapis.com/2.25/chromedriver_linux64.zip

我安装了 chromedriver 2.0 并收到此错误,

当我升级到 2.25 时,它消除了这个错误。

关于python - Selenium 2.53.5 httplib.BadStatusLine : '' Python,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40286393/

相关文章:

java - 使用 Selenium 从 Chrome Web Store 安装/添加 chrome 扩展

python - 为什么 python slice 语法不从负索引环绕到正索引?

python - 如何在不关闭浏览器的情况下在 Google Colab 上使用 Selenium?

python - 如何国际化方法注释以显示 django-admindoc

django - 何时以及为什么我应该在 Django 网络应用程序中从功能性 Selenium 测试切换到单元测试?

python - Selenium:获取 Tableau View 中的所有可见文本

python - Selenium Chrome Headless 下载文件

python - selenium.common.exceptions.WebDriverException : Message: no such session while executing testcases through Python unittest module

Python返回最近30天的数据

python - 线程中的按引用传递可变变量