-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCHANGES.txt
67 lines (44 loc) · 1.48 KB
/
CHANGES.txt
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
1.0.1 (2024-04-22)
------------------
- Updated dependencies for compatibility with Django 4 and 5.
1.0.0 (2023-06-03)
------------------
- Support Selenium 4
0.3.4 (2023-06-03)
------------------
- Fixed an initialization problem that occurred sometimes in recent
Python versions.
0.3.3 (2021-04-08)
------------------
- Updated dependencies so that it is compatible with Django 3.
0.3.2 (2019-08-30)
------------------
- Fixed SeleniumTestCase.selenium.login(), which wasn't working in
current Python/Django/Chrome versions.
0.3.1 (2019-05-12)
------------------
- Updated to current Python and Django versions.
0.3.0 (2017-05-23)
------------------
- The logic has changed. Selenium is started at the beginning of the
SeleniumTestCase and is closed at the end. This means that the browser
is closed and re-opened between test cases. There is no longer a
global selenium variable; instead, SeleniumTestCase has a selenium
attribute.
0.2.4 (2017-05-22)
------------------
- Termination is now more robust.
- Workaround a ghostdriver bug that prevents PhantomJS from terminating.
0.2.3 (2017-05-22)
------------------
- The module can now be imported before setting up Django.
0.2.1 (2015-11-17)
------------------
- Fixed login(), which was broken on Firefox 42.
0.2.0 (2015-09-30)
------------------
- Added PageElement.wait_until_[not_]contains() methods.
- SeleniumTestCase now derived from StaticLiveServerTestCase.
0.1.0 (2015-09-03)
------------------
- Initial release