File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed
src/test/java/com/browserstack Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -18,5 +18,4 @@ accessibilityOptions:
1818 needsReview : true # Default: true
1919 experimental : false # Default: true
2020 advanced : false
21- parallelsPerPlatform : ${BSTACK_PARALLELS}
22-
21+ parallelsPerPlatform : ${BSTACK_PARALLELS}
Original file line number Diff line number Diff line change 33import org .testng .Assert ;
44import org .testng .annotations .Test ;
55import com .browserstack .SeleniumTest ;
6+ import java .nio .file .Files ;
7+ import java .nio .file .Paths ;
68
79public class NOWDemoTest extends SeleniumTest {
810 @ Test
911 public void openTestPage () throws Exception {
12+
13+ String content = new String (Files .readAllBytes (Paths .get ("browserstack.yml" )));
14+ System .out .println (content );
1015
1116 String webDomainFromEnv = System .getenv ("NOW_WEB_DOMAIN" );
1217 System .out .println ("Web Domain from Env: " + webDomainFromEnv );
You can’t perform that action at this time.
0 commit comments