1 2 3 4 5 6 7 8 9 10 11 12
| it('should get the location of one or multiple elements in view', function () { browser.url('http://github.com');
var location = browser.getLocationInView('.octicon-mark-github'); console.log(location);
var xLocation = browser.getLocationInView('.octicon-mark-github', 'x') console.log(xLocation);
var yLocation = browser.getLocationInView('.octicon-mark-github', 'y') console.log(yLocation); });
|