Webdriver C# - 单击第二个链接文本而不是第一个
Webdriver C# -Click second linktext not first
通过这一行我点击了第一个文本,但是我怎样才能点击第二个准确的文本呢?
driver.FindElement(By.PartialLinkText("Play")).Click();
使用这个:
//get the list of elements which has same linkText
List<IWebElement> list = driver.findElements(By.partialLinkText("Play"));
//Click on each element by iterating the loop
foreach (IWebElement element in all)
{
element.click();
}
通过这一行我点击了第一个文本,但是我怎样才能点击第二个准确的文本呢?
driver.FindElement(By.PartialLinkText("Play")).Click();
使用这个:
//get the list of elements which has same linkText
List<IWebElement> list = driver.findElements(By.partialLinkText("Play"));
//Click on each element by iterating the loop
foreach (IWebElement element in all)
{
element.click();
}