File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -20,20 +20,20 @@ Add this dependency to your project's POM:
2020``` java
2121import com.browserstack.local.Local ;
2222
23- # creates an instance of Local
23+ // creates an instance of Local
2424Local bsLocal = new Local ();
2525
26- # replace < browserstack- accesskey> with your key. You can also set an environment variable - " BROWSERSTACK_ACCESS_KEY" .
26+ // replace <browserstack-accesskey> with your key. You can also set an environment variable - "BROWSERSTACK_ACCESS_KEY".
2727HashMap<String , String > bsLocalArgs = new HashMap<String , String > ();
2828bsLocalArgs. put(" key" , " <browserstack-accesskey>" );
2929
30- # starts the Local instance with the required arguments
30+ // starts the Local instance with the required arguments
3131bsLocal. start(bsLocalArgs);
3232
33- # check if BrowserStack local instance is running
33+ // check if BrowserStack local instance is running
3434System . out. println(bsLocal. isRunning());
3535
36- # stop the Local instance
36+ // stop the Local instance
3737bsLocal. stop();
3838```
3939
You can’t perform that action at this time.
0 commit comments