我试图单击特定网页的按钮,但是登录后,控件选择了按钮可用的页面,但是控件到达导航栏菜单选项中显示的页面后停止。 在TestCase类中:
objLogin = new Login(driver);
objLogin.loginTo("UName", "Upaswrd");
By anyelemnt = By.xpath("XPath");//XPath of navigation bar menu option
driver.findElement(anyelemnt).click();
objCurator.AddNewCurator();
In Corrosponding Class:
public void AddNewCurator()
{
By NewCuartorButton = By.xpath("XPath");//XPath of button on that webpage(Webpage that appears after clicking on above mentioned navigation bar menu option)
driver.findElement(NewCuartorButton).click();
}
实际结果:登录->单击导航栏菜单选项的指定菜单,但是控件没有在该特定网页上单击按钮,而是停止了导航栏菜单选项。
预期结果:流程应为->首次登录,然后单击导航栏菜单选项的指定菜单,然后单击该特定网页上的按钮。