We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
On a new Ubuntu Server 14.04.1 LTS:
sudo apt-get update && sudo apt-get upgrade sudo apt-get install python-pip libpython2.7-dev libx11-dev libxtst-dev libpng12-dev sudo pip install autopy sudo apt-get install python-qt4 libxml2-dev libxslt1-dev python-dev sudo pip install spynner sudo pip install ipython Xvfb :0 -ac -screen 0 1024x768x16 & export DISPLAY=:0 ipython >import spynner >spynner_browser = spynner.Browser() >spynner_browser.load("http://www.docusign.com", load_timeout=12000) --------------------------------------------------------------------------- SpynnerTimeout Traceback (most recent call last) <ipython-input-5-b84d2418ab9f> in <module>() ----> 1 spynner_browser.load("http://www.docusign.com", load_timeout=120) /usr/local/lib/python2.7/dist-packages/spynner/browser.pyc in load(self, url, load_timeout, wait_callback, tries, operation, body, headers) 546 self.webframe.load(req, operation, body) 547 if wait_callback is None: --> 548 return self._wait_load(timeout = load_timeout) 549 else: 550 return self.wait_for_content(wait_callback, tries=tries, delay=load_timeout) /usr/local/lib/python2.7/dist-packages/spynner/browser.pyc in _wait_load(self, timeout) 438 while self._load_status is None: 439 if timeout and time.time() - itime > timeout: --> 440 raise SpynnerTimeout("Timeout reached: %d seconds" % timeout) 441 self._events_loop() 442 self._events_loop(0.0) SpynnerTimeout: Timeout reached: 120 seconds
This timeouts no matter what timeout I choose.
The text was updated successfully, but these errors were encountered:
Please try other websites, docusign must block you (ip, user agent, etc)
Sorry, something went wrong.
It's not, as I am able to open the page using ghost.py, Selenium with Chrome, and Phantomjs on the same machine at the same time.
I run into the same problem when running Python in interactive mode. Sometimes a timeout doesn't even occur and it just hangs.
My guess is this is the same problem as in this issue.
No branches or pull requests
On a new Ubuntu Server 14.04.1 LTS:
This timeouts no matter what timeout I choose.
The text was updated successfully, but these errors were encountered: