How can I find an element by CSS class with XPath?

前端 未结 6 1274
刺人心
刺人心 2020-11-22 08:43

In my webpage, there\'s a div with a class named Test.

How can I find it with XPath?

6条回答
  •  花落未央
    2020-11-22 09:21

    Match against one class that has whitespace.

    //div[normalize-space(@class)="hello"]
    

提交回复
热议问题