如何通过Selenium使用Webdriver和C#定位并单击嵌套在多个框架和框架集中的元素

时间:2018-06-11 13:31:10

标签: c# selenium selenium-webdriver webdriver frame

我有像下面这样的html页面,我需要点击clslogin类中的Login。

如何遍历以查找登录信息。 我正在使用C#和selenium Webdriver。

使用XPath(/ html / body / div / table / tbody / tr [1] / td [3] / a)我没有控制Login类,总是找不到元素错误。任何人都可以帮我找到准确的xpath。

<html>
 <head></head>
 <frameset name="mytestTopFrame" rows="*"......  >
  <frame name="mytestTopsubframe" src="index.html" width="100%"......... >
   <html>
    <head></head>
     <frameset name="mytest" rows="70,20..."......  >
       <frame name="mytestsubframe" src="menu.html" width="100%"......... >
       <html>
        <body class="clsmenu" .......>
         <div align="left">
           <table id="Title" ......>
            <tbody>
             <tr class="toptitle" ...>
              <td class="clicklogin" ....>
               <a class="clslogin" href="linkref">Login </a>
              </td>
             </tr>
            </tbody>
          </table>
         </div>
        </body>
       </html>
      </frame>
    </frameset>
   </html>
  </frame>
 </frameset>
</html>

2 个答案:

答案 0 :(得分:1)

根据 HTML 您已共享点击文字为登录的元素,您必须两次诱导 WebDriverwait 切换到2子frame,然后再次找到所需的元素,如下所示:

//SwitchTo mytestTopsubframe
new WebDriverWait(driver, TimeSpan.FromSeconds(20)).Until(ExpectedConditions.FrameToBeAvailableAndSwitchToIt(By.Name("mytestTopsubframe")));
//SwitchTo mytestsubframe
new WebDriverWait(driver, TimeSpan.FromSeconds(20)).Until(ExpectedConditions.FrameToBeAvailableAndSwitchToIt(By.Name("mytestsubframe")));
//Locate the desired element
new WebDriverWait(driver, TimeSpan.FromSeconds(20)).Until(ExpectedConditions.ElementToBeClickable(By.XPath("//a[@class='clslogin' and @href='linkref']"))).Click();

注意:您不必考虑是否存在<frameset>,并且可以安全地忽略这些标记。

答案 1 :(得分:0)

您需要先更改为正确的iframe才能访问iframe下方的路径。为此,您可以使用driver.SwichtTo().Frame("your frame ID")。如果此解决方案不起作用,则在此线程may be a solution中,线程使用相同的代码行,但它会搜索父节点和子节点