You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 29, 2024. It is now read-only.
_Note: Major version 0 releases are for initial development, and backwards compatible changes may be introduced at any time._
4
+
5
+
## Features
6
+
7
+
- 7966912 Updating to Selenium 2.24.
8
+
- 90f0a94 Instead of having tests run with the protractor runner need to require()
9
+
the protractor library, publish it to the global namespace. This insures
10
+
the instance of protractor used within the tests is the same as the
11
+
one used on the command line. Closes #36. Version bump for incompatible
12
+
API changes.
13
+
- cb373c9 Adding glob matching to the spec files from the config. Closes #29.
14
+
15
+
16
+
## Breaking changes
17
+
18
+
- Now running on selenium 2.24. Requires updating WebDriverJS and the selenium standalone binary.
19
+
20
+
- The protractor runner now publishes `protractor` to the global namespace and sets up the Jasmine-WebDriver adapter. Tests run with this should no longer include
21
+
22
+
````javascript
23
+
// var protractor = require('protractor'); // No longer needed!
24
+
// require('protractor/jasminewd'); // No longer needed!
25
+
26
+
var ptor =protractor.getInstance(); // This should just work now.
0 commit comments