@@ -44,7 +44,7 @@ Copy the following into spec.js:
44
44
45
45
``` javascript
46
46
// spec.js
47
- describe (' angularjs homepage ' , function () {
47
+ describe (' Protractor Demo App ' , function () {
48
48
it (' should have a title' , function () {
49
49
browser .get (' http://juliemr.github.io/protractor-demo/' );
50
50
@@ -80,7 +80,7 @@ Now let's modify the test to interact with elements on the page. Change spec.js
80
80
81
81
``` js
82
82
// spec.js
83
- describe (' angularjs homepage ' , function () {
83
+ describe (' Protractor Demo App ' , function () {
84
84
it (' should add one and two' , function () {
85
85
browser .get (' http://juliemr.github.io/protractor-demo/' );
86
86
element (by .model (' first' )).sendKeys (1 );
@@ -116,7 +116,7 @@ Let's put these two tests together and clean them up a bit. Change spec.js to th
116
116
117
117
``` js
118
118
// spec.js
119
- describe (' angularjs homepage ' , function () {
119
+ describe (' Protractor Demo App ' , function () {
120
120
var firstNumber = element (by .model (' first' ));
121
121
var secondNumber = element (by .model (' second' ));
122
122
var goButton = element (by .id (' gobutton' ));
@@ -192,7 +192,7 @@ Sometimes, you will want to deal with a list of multiple elements. You can do th
192
192
193
193
``` js
194
194
// spec.js
195
- describe (' angularjs homepage ' , function () {
195
+ describe (' Protractor Demo App ' , function () {
196
196
var firstNumber = element (by .model (' first' ));
197
197
var secondNumber = element (by .model (' second' ));
198
198
var goButton = element (by .id (' gobutton' ));
0 commit comments