如何检索元素的clientWidthscrollWidth?使用getCssValue不起作用

$('.grid-header-col .title').getCssValue('scrollWidth')

最佳答案

您应该使用getAttribute()代替:

element(by.css('.grid-header-col .title')).getAttribute('scrollWidth');

09-25 16:12