File tree 3 files changed +7
-6
lines changed
src/test/java/com/browserstack
3 files changed +7
-6
lines changed Original file line number Diff line number Diff line change 10
10
gradlew
11
11
gradlew.bat
12
12
logs
13
+ browserstack.err
Original file line number Diff line number Diff line change @@ -58,10 +58,10 @@ parallelsPerPlatform: 1
58
58
# Set browserStackLocal to true if your website under test is not accessible publicly over the internet
59
59
# Learn more about how BrowserStack Local works here -> https://www.browserstack.com/docs/automate/selenium/local-testing-introduction
60
60
browserstackLocal : true # <boolean> (Default false)
61
- # browserStackLocalOptions:
61
+ browserStackLocalOptions :
62
62
# Options to be passed to BrowserStack local in-case of advanced configurations
63
- # - localIdentifier: # <string> (Default: null) Needed if you need to run multiple instances of local.
64
- # - forceLocal: true # <boolean> (Default: false) Set to true if you need to resolve all your traffic via BrowserStack Local tunnel.
63
+ localIdentifier : browserstack_sample # <string> (Default: null) Needed if you need to run multiple instances of local.
64
+ # forceLocal: true # <boolean> (Default: false) Set to true if you need to resolve all your traffic via BrowserStack Local tunnel.
65
65
# Entire list of arguments available here -> https://www.browserstack.com/docs/automate/selenium/manage-incoming-connections
66
66
67
67
# ===================
Original file line number Diff line number Diff line change 6
6
public class LocalTest extends BrowserStackRemoteTest {
7
7
8
8
@ Test
9
- public void test () throws Exception {
10
- driver .get ("http://bs-local.com:45691/check " );
9
+ public void test () {
10
+ driver .get ("http://bs-local.com:45454/ " );
11
11
12
- Assert .assertTrue (driver .getPageSource ().contains ("Up and running " ));
12
+ Assert .assertTrue (driver .getTitle ().contains ("BrowserStack Local " ));
13
13
}
14
14
}
You can’t perform that action at this time.
0 commit comments