如何使用selenium webdriver定位自定义html元素

时间:2012-12-04 11:49:45

标签: java selenium svg webdriver

我有以下HTML代码

  <svg height="600" width="910" xmlns:xlink="http://www.w3.org/1999/xlink"  
   id="svgcontent" overflow="visible" x="910" y="600" viewBox="0 0 910 600">
    <g style="pointer-events:all">
      <text fill="rgb(0,0,0)" font-family="Sans-Serif" font-size="13" id="80-155-126" 
        transform="rotate(-90, 168, 126)" y="126" x="168" style="pointer-
         events:inherit">A100A</text>
   </g>
  </svg>

我尝试了以下方式,但没有成功

assertEquals(driver.findElements(By.xpath("//*[local-name()='svg' 
 and namespace-uri()='http://www.w3.org/2000/svg' and @id='svgcontent']//*[local-
 name()='g' and namespace-uri()='http://www.w3.org/2000/svg']/text")).size(), 1);

1 个答案:

答案 0 :(得分:2)

尝试以下

assertEquals(driver.findElements(By.xpath("//*[local-name()='svg' and @id='svgcontent']//*[local-name()='text']")).size(), 1); 

它应该有用,但是

assertEquals(driver.findElements(By.xpath("//*[local-name()='svg' and namespace-uri()='http://www.w3.org/2000/svg' and @id='svgcontent']//*[local-name()='g' and namespace-uri()='http://www.w3.org/2000/svg']/*[local-name()='text']")).size(), 1);

也应该没问题。