forked from openedx-unsupported/bok-choy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGELOG
28 lines (20 loc) · 950 Bytes
/
CHANGELOG
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
v0.3.0 (2/19/14)
* Deprecated css_* methods in favor of queries
* Deprecated fulfill_before and fulfill_after in favor of Promise.fulfill()
* Replaced Splinter dependency direct Selenium calls
* Deprecate SubQuery in favor of XPath queries.
* Added query methods to check element visibility.
* Added query method for retrieving the "nth" element.
* Updated API documentation, using Sphinx keywords for all public methods.
v 0.2.1 (2/12/14)
* Bugfix: Make SubQueries inside Queries work with the repr function
* Bugfix: Make classes stored as class attributes on PageObjects always be unguarded
(despite technically being callable).
v 0.2.0 (2/11/14)
* Added query interface for interacting with the browser
v 0.1.0 (1/23/14)
* Added tests for documentation examples
* Removed WebAppUI
* Refocused design on PageObjects, rather than on the WebAppUI
* Pages now can reference other pages using `self.ui`
* Added tests for page interactions