This repository was archived by the owner on Jul 29, 2024. It is now read-only.
File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ var webdriver = require('selenium-webdriver');
3
3
4
4
describe ( 'modes of failure' , function ( ) {
5
5
it ( 'should fail to find a non-existent element' , function ( ) {
6
- browser . get ( 'app/ index.html#/form' ) ;
6
+ browser . get ( 'index.html#/form' ) ;
7
7
8
8
// Run this statement before the line which fails. If protractor is run
9
9
// with the debugger (protractor debug debugging/conf.js), the test
@@ -20,7 +20,7 @@ describe('modes of failure', function() {
20
20
} , 20000 ) ;
21
21
22
22
it ( 'should fail an assertion' , function ( ) {
23
- browser . get ( 'app/ index.html#/form' ) ;
23
+ browser . get ( 'index.html#/form' ) ;
24
24
25
25
var greeting = element ( by . binding ( '{{greeting}}' ) ) ;
26
26
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ describe('timeout possibilities', function() {
9
9
it ( 'should timeout due to webdriver script timeout' , function ( ) {
10
10
browser . driver . manage ( ) . timeouts ( ) . setScriptTimeout ( 55 ) ;
11
11
12
- browser . get ( 'app/ index.html#/form' ) ;
12
+ browser . get ( 'index.html#/form' ) ;
13
13
14
14
browser . driver . executeAsyncScript ( function ( ) {
15
15
var callback = arguments [ arguments . length - 1 ] ;
@@ -33,7 +33,7 @@ describe('timeout possibilities', function() {
33
33
34
34
browser . driver . manage ( ) . timeouts ( ) . setScriptTimeout ( 55 ) ;
35
35
36
- browser . get ( 'app/ index.html#/async' ) ;
36
+ browser . get ( 'index.html#/async' ) ;
37
37
38
38
39
39
var status = element ( by . binding ( 'slowHttpStatus' ) ) ;
You can’t perform that action at this time.
0 commit comments