What is the difference between the isPresent and isDisplayed methods

后端 未结 5 594
走了就别回头了
走了就别回头了 2020-12-08 06:40

I just started using Protractor to write tests. I am wondering what the difference is between the isPresent() and isDisplayed() methods.

5条回答
  •  不知归路
    2020-12-08 07:24

    isPresent is true if element exists in a page (in DOM), but can be hidden (display: none in css) isDisplayed is true only if isPresent is true and element is visible

提交回复
热议问题