bok-choy
bok-choy copied to clipboard
UI-level acceptance test framework
``` bok_choy/query.py 9:from collections import Sequence ```
I'm currently using bok-choy for some tests. I'd like the following: 1. Run tests on different operating systems, versions, etc through a testing service, like SauceLabs or BrowserStack. 1. Pass...
According to the docs, when trying to do visual diff testing and running bok-choy with pytest, all that is needed to create initial baseline shots is to set the environment...
After retrieving a parent element I would like to be able to make queries on the child elements. jQuery and Selenium offer real-world implementation examples. ``` html ``` ``` python...
See [element_to_be_clickable](http://selenium.googlecode.com/git/docs/api/py/_modules/selenium/webdriver/support/expected_conditions.html#element_to_be_clickable) expected condition. Add a promise for this to the click method so that we do not try clicking on the element too early.