【发布时间】:2011-12-04 06:47:31
【问题描述】:
我看到了关于类似/相同问题的其他问题,但它们并没有帮助我解决问题 :(。我登录到生产站点。说 (http://www.site.com/log)。我想在那之后点击一个链接,但 Selenium找不到链接。相关的 HTML 部分是:
<div style="display:none" id="managers">
<a class="projectManager" style="color:black"> Project Manager</a>
<a class="transportManager"> Transport Manager</a>
</div>
java代码如下:
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.chrome.ChromeDriver;
import org.openqa.selenium.firefox.FirefoxDriver;
import org.openqa.selenium.remote.DesiredCapabilities;
import org.openqa.selenium.support.ui.Select;
public class test {
private WebDriver driver;
private String baseUrl="";
private StringBuffer verificationErrors = new StringBuffer();
@Before
public void setUp() throws Exception {
//driver = new FirefoxDriver();
//driver.manage().timeouts().implicitlyWait(45, TimeUnit.SECONDS);
DesiredCapabilities chromeCapabilities = DesiredCapabilities.chrome();
String chromeBinary = System.getProperty(" ");
if (chromeBinary == null || chromeBinary.equals("")) {
String os = System.getProperty("os.name").toLowerCase().substring(0, 3);
chromeBinary = "lib/chromedriver-" + os + (os.equals("win") ? ".exe" : "");
System.setProperty("webdriver.chrome.driver", chromeBinary);
}
driver=new ChromeDriver(chromeCapabilities);
driver.manage().timeouts().implicitlyWait(70,TimeUnit.SECONDS);
}
@Test
public void testEmployee() throws Exception {
driver.get("http://www.site.com/log");
driver.findElement(By.name("j_username")).clear();
driver.findElement(By.name("j_username")).sendKeys("username");
driver.findElement(By.name("j_password")).clear();
driver.findElement(By.name("j_password")).sendKeys("password");
driver.findElement(By.cssSelector("input[name=\"login\"]")).click();
Thread.sleep(10000);
driver.findElement(By.linkText(" Project Manager")).click();
driver.findElement(By.linkText("Sign Out")).click();
System.out.println("Test done");
}
@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;
}
}
}
问题:错误是什么?它给出了“找不到元素”异常
谢谢。
【问题讨论】:
-
你检查浏览器的版本,看看它是否被 selenium 支持?
-
是的。它是 。它能够点击谷歌链接并做一些其他的事情。
-
哪一行实际上给出了“找不到元素”异常?
-
driver.findElement(By.linkText("项目经理")).click();