2

我成功地在模拟器上设置了 androiddriver,但我正在努力解决 httplib 错误。这是我在mac上设置android sdk后采取的步骤。

1.  ./adb devices, which returned emulator-5554
2. ./adb emulator-5554 -s forward tcp:8080 tcp:8080
3. visited http://localhost:8080/wd/hub/status in my browser and received a { status: 0 }
4. In the python shell (tried this on both python 2.7 & 2.6), I did:

>> from selenium import webdriver
>> from selenium.webdriver.common.desired_capabilities import DesiredCapabilities
>> driver = webdriver.Remote("http://localhost:8080/wd/hub",     webdriver.DesiredCapabilities.ANDROID)
>> driver.get("http://www.google.com")

有时,当我设置驱动程序变量时,我会收到错误(如下),有时不会。driver.get 命令也是如此。

堆栈跟踪如下:

  File "<stdin>", line 1, in <module>
  File "/Library/Python/2.7/site-packages/selenium/webdriver/remote/webdriver.py", line 177, in get
    self.execute(Command.GET, {'url': url})
  File "/Library/Python/2.7/site-packages/selenium/webdriver/remote/webdriver.py", line 163, in execute
    response = self.command_executor.execute(driver_command, params)
  File "/Library/Python/2.7/site-packages/selenium/webdriver/remote/remote_connection.py", line 349, in execute
    return self._request(url, method=command_info[0], data=data)
  File "/Library/Python/2.7/site-packages/selenium/webdriver/remote/remote_connection.py", line 396, in _request
response = opener.open(request)
  File     "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/urllib2.py", line 394, in open
    response = self._open(req, data)
  File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/urllib2.py", line 412, in _open
'_open', req)
  File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/urllib2.py", line 372, in _call_chain
    result = func(*args)
  File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/urllib2.py", line 1199, in http_open
    return self.do_open(httplib.HTTPConnection, req)
  File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/urllib2.py", line 1170, in do_open
    r = h.getresponse(buffering=True)
  File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/httplib.py", line 1027, in getresponse
response.begin()
  File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/httplib.py", line 407, in begin
version, status, reason = self._read_status()
  File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/httplib.py", line 371, in _read_status
    raise BadStatusLine(line)
httplib.BadStatusLine: ''

还有其他人对此有解决方案的想法吗?

4

1 回答 1

0

正如您所说,这已在较新版本的 android-server 中得到修复。但是,对于那些无法更新的用户:这是由于驱动程序假设页面已过早加载到正在加载的实际页面。Selenium 从驱动程序接收一些 HTTP 标头,并且状态行无效。例如,

而不是HTTP/1.0 200状态行是空白的(如上)。

我发现解决此问题的一种方法是等待一个足够长的时间段,假设页面已被加载,然后尝试建立连接。

我通常用这行代码得到这个异常:

android = webdriver.Remote(command_executor='http://127.0.0.1:8080/wd/hub', desired_capabilities=capabilities.ANDROID)

所以要修复,我只是将代码更改为等到调用成功:

android = None
while android is None:
    try:
        android = webdriver.Remote(command_executor='http://127.0.0.1:8080/wd/hub', desired_capabilities=capabilities.ANDROID)
    except:
        time.sleep(1)
        pass

请注意,我仍然遇到问题,save_screenshot直到BadStatusLine我从 2.3.2 APK 降级到 2.2.1 APK

于 2013-10-30T14:10:23.943 回答