如何使用Webdriver和C#通过Selenium找到并单击嵌套在多个框架和框架集中的元素 [英] How to locate and click on an element which is nested within multiple frame and frameset through Selenium using Webdriver and C#

查看:88
本文介绍了如何使用Webdriver和C#通过Selenium找到并单击嵌套在多个框架和框架集中的元素的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有如下所示的html页面,我需要在clslogin类中单击Login.

I have html page like below and I need to click on Login inside the class clslogin.

如何遍历以查找登录名. 我正在将C#与Selenium Webdriver一起使用.

How do I traverse to find the Login. I'm using C# with selenium Webdriver.

使用XPath(/html/body/div/table/tbody/tr [1]/td [3]/a)时,我无法控制Login类,总是会出现找不到元素的错误.谁能帮助我获得确切的xpath.

With XPath (/html/body/div/table/tbody/tr[1]/td[3]/a) I'm not getting control on Login class, always element not found error is throwing. Can anybody help me to get exact 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>

推荐答案

根据您共享的 HTML ,您必须点击带有登录文字的元素两次诱使 WebDriverwait 切换2个子frame,然后再次定位所需的元素,如下所示:

As per the HTML you have shared to click on the element with text as Login you have to induce WebDriverwait twice to switch through 2 child frame and then again to locate the desired element as follows:

//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>的存在,可以放心地忽略这些标签.

Note: You don't have to consider the presence of <frameset> and can safely ignore those tags.

这篇关于如何使用Webdriver和C#通过Selenium找到并单击嵌套在多个框架和框架集中的元素的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
相关文章
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆