第3レベルに拡大する第2レベルのメニューオプションをクリックしようとしています。いくつかのメニューオプションはクリックされません。私はすべてのセクションの前にbrowser.driver.manage()。window()。setSize(1280、1024)を追加しました。要素がクロームドライバの角度2をクリックできない
it('Should expect clicking the second level menu option will expand the third level',() => {
element.all((by.css('div.panel.panel-default'))).click().then(() => {
var groupList = element.all((by.css('.list-group-header.sub-menu-header.active-element')));
// expect(groupList.get(1).getAttribute('class')).toMatch('active-element');
expect(groupList.count()).toEqual(1);
});
});
"by.css( 'div.panel.panel-default')"このセレクタを1つずつクリックしたいと思います...もし、要素をすべてクリックして、どのように各要素をここでクリックできますか? – user3444776