如何检索元素的clientWidth
和scrollWidth
?使用getCssValue
不起作用
$('.grid-header-col .title').getCssValue('scrollWidth')
最佳答案
您应该使用getAttribute()
代替:
element(by.css('.grid-header-col .title')).getAttribute('scrollWidth');
如何检索元素的clientWidth
和scrollWidth
?使用getCssValue
不起作用
$('.grid-header-col .title').getCssValue('scrollWidth')
最佳答案
您应该使用getAttribute()
代替:
element(by.css('.grid-header-col .title')).getAttribute('scrollWidth');