我正在尝试使用 Selenium WebDriver(2.21.0) 单击 Web 元素。
当我尝试通过 Selenium IDE 驱动时,它可以正常工作,但是当我使用 Firefox 驱动程序的 Java 实现尝试相同的操作时,它会导致错误的页面。
当代码正在运行并且我手动滚动到所需的元素时,它可以工作。
我确保 web 元素可见并使用
By by = By.xpath("(//a[contains(@href, 'javascript:void(0);')])[26]"); //**Edit:** this is how i
//am getting the locator
WebElement element = driver.findElement(by);
return (element.isEnabled() || element.isDisplayed()) ? element : null;
它返回一些元素,但不是我期望的元素。
这对我来说看起来很奇怪,因为 Selenium webdriver 主要滚动到一个元素(如果在屏幕上不可见)并执行所需的交互。
提前致谢!
编辑:这是 IDE 的导出代码(java/JUnit4/webdriver)
package com.example.tests;
import java.util.regex.Pattern;
import java.util.concurrent.TimeUnit;
import org.junit.*;
import static org.junit.Assert.*;
import static org.hamcrest.CoreMatchers.*;
import org.openqa.selenium.*;
import org.openqa.selenium.firefox.FirefoxDriver;
import org.openqa.selenium.support.ui.Select;
public class Bandar {
private WebDriver driver;
private String baseUrl;
private StringBuffer verificationErrors = new StringBuffer();
@Before
public void setUp() throws Exception {
driver = new FirefoxDriver();
baseUrl = "http://e.weibo.com/";
driver.manage().timeouts().implicitlyWait(30, TimeUnit.SECONDS);
}
@Test
public void testBandar() throws Exception {
driver.get(baseUrl + "/nescafechina");
driver.findElement(By.xpath("(//a[contains(@href, 'javascript:void(0);')])[26]")).click();
driver.findElement(By.xpath("(//a[contains(@href, 'javascript:void(0);')])[12]")).click();
}
@After
public void tearDown() throws Exception {
driver.quit();
String verificationErrorString = verificationErrors.toString();
if (!"".equals(verificationErrorString)) {
fail(verificationErrorString);
}
}
private boolean isElementPresent(By by) {
try {
driver.findElement(by);
return true;
} catch (NoSuchElementException e) {
return false;
}
}
}