Protractor find an element by tag inside a div

前端 未结 4 494
南笙
南笙 2021-02-08 02:10

I\'ve got a div in an HTML Page of which the name is always known and inside this div there is an href, the details of which are not known. It could be the direct child of the

4条回答
  •  南笙
    南笙 (楼主)
    2021-02-08 02:19

    element(by.css('.divName a')).click();
    

    Or the shorter notation:

    $('.divName a').click();
    

提交回复
热议问题