1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
| it('should give me the size of an element', function () { browser.url('http://github.com') var logo = $('.octicon-mark-github')
var size = logo.getElementSize() size = browser.getElementSize('.octicon-mark-github') console.log(size)
var width = logo.getElementSize('width') width = browser.getElementSize('.octicon-mark-github', 'width') console.log(width)
var height = logo.getElementSize('height') height = browser.getElementSize('.octicon-mark-github', 'height') console.log(height) })
|