如何从Selenium IDE

时间:2018-03-22 04:35:27

标签: html selenium testing selenium-ide

我在从此下拉菜单中选择链接时遇到问题。 HTML是这样的:

<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-22594"><a href="http://toolsqa.com/automation-practice-form/" data-level="2"><span class="menu-item-text"><span class="menu-text">Automation Practice Form</span></span></a></li>

我试过

命令:选择 目标:class =“menu-item menu-item-type-post_type menu-item-object-page menu-item-22594”

但它失败了。我想导航到该网页上测试其他内容的链接。

2 个答案:

答案 0 :(得分:0)

对于Select类,使用标识元素的常规方法。您可以使用xpath://span[text()='Automation Practice Form']来标识元素,然后单击它。它应该工作。

注意:我们应该在DOM中使用Select类

答案 1 :(得分:0)

要点击带有自动化练习表的文字的链接,您可以使用以下xpath

//a[@href='http://toolsqa.com/automation-practice-form/']/span[@class='menu-item-text']/span[@class='menu-text']