【问题标题】:Selenium 2.53.5 httplib.BadStatusLine: '' PythonSelenium 2.53.5 httplib.BadStatusLine: '' Python
【发布时间】:2016-10-27 13:51:12
【问题描述】:

我正在尝试使用 Python 2.7 中的 Selenium 2.53.5 以在线形式自动注册序列号。该脚本已经运行了两个多月,但是昨天我开始运行它时开始收到错误: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: ''

【问题讨论】:

标签: python selenium selenium-chromedriver httplib


【解决方案1】:

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

我安装了 chromedriver 2.0 出现了这个错误,

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

【讨论】:

  • 这仍然没有解决我的问题,在 chrome 尝试加载第一个网页后,我仍然收到 httplib.BadStatusLine 错误。
  • 一开始调用chromedriver时出现httplib错误,现在尝试加载第一页时出现这种情况?可能是该网站发送了错误的请求,您是否尝试加载其他网站,例如 google.com?还是bing.com?只是为了检查
  • 我的意思是,网站可能发送了错误的响应
猜你喜欢
  • 2017-10-12
  • 2017-03-10
  • 2017-09-24
  • 2015-02-21
  • 2013-08-03
  • 1970-01-01
  • 2017-05-28
  • 2012-05-29
  • 2017-04-09
相关资源
最近更新 更多