Monthly Archive: October 2016

Selenium with Python 0

Selenium with Python

Debugging Use something like http://www.pyzo.org/pyzo_intro.html Documentation http://selenium-python.readthedocs.io/api.html?highlight=phantom#module-selenium.webdriver.remote.webdriver Find Selenium Version $> python >>> import selenium >>> help (selenium) (...) DATA __version__ = '3.8.0' VERSION 3.8.0 Also you can check a pip package version with: $...

Callback after all child views have rendered 0

Callback after all child views have rendered

This is something that has troubled me for long time. Whenever the parent's view afterRender() fired, the child views had not yet rendered. Thus it seemed impossible to know when all child views had...