This repository has been archived by the owner on Sep 5, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCHANGES
52 lines (35 loc) · 1.65 KB
/
CHANGES
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
1.3.1 (2019-07-08):
* Add method hover_over_button to the NavigationTestMixin to
perform hover actions.
1.3.0 (2018-04-17):
* Add support for asserting string should or should not appear
anywhere within a page's source.
1.2.1 (2018-01-25):
* Run chrome and chrome-headless tests using the "--no-sandbox" option,
so that testing may be done in containerized Travis builds without
problem.
1.2.0 (2018-01-22):
* Remove deprecated phantomjs. The new default is chrome-headless and
a firefox-headless is also available.
1.1.3 (2017-11-15):
* Fix login() to not cause race conditions when trying to get_page before
the login has completed.
1.1.2 (2017-11-14):
* Fix @wait_for to not fail with an exception when trying to log the page
content before the page is fully loaded.
1.1.1 (2017-11-13):
* The @wait_for decorator should retry when WebDriverException is raised.
1.1.0 (2017-10-27):
* Add wait_for to most methods involving content search.
* Add support for timeout kwarg in most methods.
* Split out get_dropdown and get_button methods to prevent side-effects.
* Add text_on_missing and png_on_missing flags to class to cause
visible text and base64 png url dumps with missing exception.
* Added support for SELENIUM_WINDOW_SIZE option.
* Add SELENIUM_TESTCASE_BASE_DIR to settings.
* Create htmlselenium directory with html trace.
* Replaced find_element with find_text in should_see_immediately().
* Added support for index in find_element().
* Added find_elements() method.
1.0.0 (2017-10-26):
* Initial public release of django-selenium-testcase.