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:
20
20
``` java
21
21
import com.browserstack.local.Local ;
22
22
23
- # creates an instance of Local
23
+ // creates an instance of Local
24
24
Local bsLocal = new Local ();
25
25
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".
27
27
HashMap<String , String > bsLocalArgs = new HashMap<String , String > ();
28
28
bsLocalArgs. put(" key" , " <browserstack-accesskey>" );
29
29
30
- # starts the Local instance with the required arguments
30
+ // starts the Local instance with the required arguments
31
31
bsLocal. start(bsLocalArgs);
32
32
33
- # check if BrowserStack local instance is running
33
+ // check if BrowserStack local instance is running
34
34
System . out. println(bsLocal. isRunning());
35
35
36
- # stop the Local instance
36
+ // stop the Local instance
37
37
bsLocal. stop();
38
38
```
39
39
You can’t perform that action at this time.
0 commit comments