UNPKG

332 BPlain TextView Raw
1Feature: Javascript is working
2
3 Scenario: Inline Javascript
4
5 Given I am testing javascript
6 When I execute return this.targets.google.hostname=="google.com";
7
8
9 Scenario: Multi-line Javascript
10
11 Given I am testing more javascript
12 When I execute
13 --------
14 return this.targets.google.protocol=="https";
15 --------