How to check if element contains specific class attribute

前端 未结 7 1826
生来不讨喜
生来不讨喜 2021-02-05 02:09

How can I check if a selenium web element contains a specific css class.

I have this html li element

  • 7条回答
    •  不要未来只要你来
      2021-02-05 02:27

      Based on a common pre-classList javascript technique:

      public boolean hasClass(WebElement element, String theClass) {
          return (" " + element.getAttribute("class") + " ").contains(" " + theClass + " ");
      }
      

    提交回复
    热议问题