Skip to content

Commit 2ccea6e

Browse files
committed
0.9.3
1 parent 3294124 commit 2ccea6e

File tree

2 files changed

+42
-39
lines changed

2 files changed

+42
-39
lines changed

ChangeLog

Lines changed: 41 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -1,81 +1,84 @@
1+
2016-11-22 version 0.9.3
2+
* Pretty printing of JSON reponse (@crantok in PR #44)
3+
14
2016-08-31 version 0.9.2
2-
* SwithFrame with nil id (@exjimsk in PR #34)
5+
* SwithFrame with nil id (@exjimsk in PR #34)
36

47
2016-02-23 version 0.9.1
5-
* Log method (@wetherbeei in PR #21)
8+
* Log method (@wetherbeei in PR #21)
69

710
2016-02-11 version 0.9.0
8-
* Testing on docker with go 1.5.3
9-
* Testing with Selenium 2.51.0
10-
* SwitchSession (@minusnine in PR #27)
11-
* KeyUp and KeyDown (@minusnine in PR #26)
12-
* Capability type (@minusnine in PR #25)
11+
* Testing on docker with go 1.5.3
12+
* Testing with Selenium 2.51.0
13+
* SwitchSession (@minusnine in PR #27)
14+
* KeyUp and KeyDown (@minusnine in PR #26)
15+
* Capability type (@minusnine in PR #25)
1316

1417
2015-06-16 version 0.8.5
15-
* Fix URL in go.doc (@RaviTezu in PR #15)
18+
* Fix URL in go.doc (@RaviTezu in PR #15)
1619

1720
2015-06-16 version 0.8.4
18-
* Make SetDebug visible (github PR #8 by dskora)
21+
* Make SetDebug visible (github PR #8 by dskora)
1922

2023
2015-02-10 version 0.8.3
21-
* ResizeWindow (MR #3 by eide)
24+
* ResizeWindow (MR #3 by eide)
2225

2326
2014-08-14 version 0.8.2
24-
* Fixed errors found by "go vet"
27+
* Fixed errors found by "go vet"
2528

2629
2014-02-04 version 0.8.1
27-
* MaximizeWindow (issue #9)
28-
* VERSION -> Version
30+
* MaximizeWindow (issue #9)
31+
* VERSION -> Version
2932

3033
2014-01-28 version 0.8.0
31-
* GetHTTPClient for AppEngine support (issue #8)
34+
* GetHTTPClient for AppEngine support (issue #8)
3235

3336
2013-11-02 version 0.7.0
34-
* Added SessionId to Selenium interface
37+
* Added SessionId to Selenium interface
3538

3639
2013-10-09 version 0.6.1
37-
* Fix panic when stringCommand return value is nil (issue #6)
40+
* Fix panic when stringCommand return value is nil (issue #6)
3841

3942
2012-04-10 version 0.6.0
40-
* ExecuteScriptRaw, ExecuteScriptAsyncRaw (Naitik Shah)
41-
* DecodeElement in API (Naitik Shah)
43+
* ExecuteScriptRaw, ExecuteScriptAsyncRaw (Naitik Shah)
44+
* DecodeElement in API (Naitik Shah)
4245

4346
2012-04-07 version 0.5.0
44-
* IsDiaplayed -> IsDisplayed (thanks Naitik Shah)
45-
* VERSION is a const now
47+
* IsDiaplayed -> IsDisplayed (thanks Naitik Shah)
48+
* VERSION is a const now
4649

4750
2012-03-29 version 0.4.0
48-
* Fix bug in /status
49-
* timeouts are in time.Duration
51+
* Fix bug in /status
52+
* timeouts are in time.Duration
5053

5154
2012-02-13 version 0.3.0
52-
* Go 1
53-
* Compatible with `go get`
54-
* README teaks
55+
* Go 1
56+
* Compatible with `go get`
57+
* README teaks
5558

5659
2011-09-27 version 0.2.2
57-
* All keys from http://bit.ly/p8SIrD
60+
* All keys from http://bit.ly/p8SIrD
5861

5962
2011-09-27 version 0.2.1
60-
* Capabilities, SetAsyncScriptTimeout, SetImplicitWaitTimeout, CloseWindow
61-
* IME commands
62-
* Use selenium 2.7.0 for testing
63+
* Capabilities, SetAsyncScriptTimeout, SetImplicitWaitTimeout, CloseWindow
64+
* IME commands
65+
* Use selenium 2.7.0 for testing
6366

6467
2011-09-21 version 0.2.0
65-
* Moved profileDir out of NewRemote
68+
* Moved profileDir out of NewRemote
6669

6770
2011-09-07 version 0.1.3
68-
* Local test server, SauceLabs disabled
69-
* Added run-tests.sh
70-
* Stop tests on first error (t.Error -> t.Fatal)
71+
* Local test server, SauceLabs disabled
72+
* Added run-tests.sh
73+
* Stop tests on first error (t.Error -> t.Fatal)
7174

7275
2011-09-06 version 0.1.2
73-
* Tests running on SauceLabs
74-
* More lax content-type checking
75-
* Pass Capabilities (not *Capabilties)
76+
* Tests running on SauceLabs
77+
* More lax content-type checking
78+
* Pass Capabilities (not *Capabilties)
7679

7780
2011-09-04 version 0.1.1
78-
* Screenshot
81+
* Screenshot
7982

8083
2011-09-04 version 0.1.0
81-
* Initial release
84+
* Initial release

selenium.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66

77
const (
88
// Version of driver
9-
Version = "0.9.2"
9+
Version = "0.9.3"
1010
)
1111

1212
/* Element finding options */

0 commit comments

Comments
 (0)