测试用例在Selenium IDE中运行,但是当导出到WebDriver并在Eclipse中执行时,Junit脚本找不到名称中带有撇号的LinkText元素。
我逃脱了撇号,但Junit仍然无法找到它。
有问题的行在代码中突出显示
我导出了一个不包含任何撇号的Selenuim测试用例,我能够在Eclipse中运行WebDriver Junit测试而没有任何问题。
我将继续使用没有撇号的测试用例但如果我能弄清楚如何处理特殊字符会很好。
此致
Rick Doucette 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 FirstSelIDEDemo {
private WebDriver driver;
private String baseUrl;
private boolean acceptNextAlert = true;
private StringBuffer verificationErrors = new StringBuffer();
@Before
public void setUp() throws Exception {
driver = new FirefoxDriver();
baseUrl = "http://www.soastastore.com/";
driver.manage().timeouts().implicitlyWait(30, TimeUnit.SECONDS);
}
@Test
public void testFirstSelIDEDemo() throws Exception {
driver.get(baseUrl + "/");
driver.findElement(By.linkText("Store")).click();
driver.findElement(By.linkText("Tron: Legacy")).click();
driver.findElement(By.id("product_155_submit_button")).click();
new Select(driver.findElement(By.name("product_rating"))).selectByVisibleText("2");
driver.findElement(By.id("s")).clear();
driver.findElement(By.id("s")).sendKeys("firth");
driver.findElement(By.id("searchsubmit")).click();
*****driver.findElement(By.linkText("The King\'s Speech")).click();*****
driver.findElement(By.name("product_rating")).click();
new Select(driver.findElement(By.name("product_rating"))).selectByVisibleText("4");
driver.findElement(By.cssSelector("form.wpsc_product_rating > input[type=\"submit \"]")).click();
driver.findElement(By.id("product_160_submit_button")).click();
new Select(driver.findElement(By.name("product_rating"))).selectByVisibleText("4");
driver.findElement(By.cssSelector("form.wpsc_product_rating > input[type=\"submit\"]")).click();
driver.findElement(By.id("product_160_submit_button")).click();
driver.findElement(By.linkText("Checkout")).click();
driver.findElement(By.cssSelector("form.adjustform.remove > input[name=\"submit\"]")).click();
driver.findElement(By.cssSelector("span > input[name=\"submit\"]")).click();
// Warning: assertTextPresent may require manual changes
assertTrue(driver.findElement(By.cssSelector("BODY")).getText().matches("^[\\s\\S]*ERROR: Please enter a username\\.[\\s\\S]*$"));
}
@After
public void tearDown() throws Exception {
driver.quit();
String verificationErrorString = verificationErrors.toString();
if (!"".equals(verificationErrorString)) {
fail(verificationErrorString);
}
}
答案 0 :(得分:1)
您不需要在Java源代码中转义撇号,因此您可能会丢失\
。生成的HTML是否有效(源中应该有'
,如果属于某个属性)?也许它实际上不是'
(代码u + 0027),而是像u + 2019(http://www.fileformat.info/info/unicode/char/2019/index.htm)之类的东西?