Selenium和automation的新产品。
首先,当我使用Junit运行这些测试时,我的测试在Eclipse中运行良好。但如果我通过Jenkins或CLI启动测试,我会得到结果:
运行的测试总数:0,失败数:0,跳过数:0
现在我可能是把考试的结构弄错了,或者我可能做了一些完全错误的事情。我已经到处查看了,所有在线解决方案似乎都无法解决我的问题。
我的测试只是一个简单的登录测试。
我想我可能把这些框架弄混了,或者以错误的方式将它们结合在一起使用。我正在使用Testng启动硒测试
我想
。我再次举手承认我是新手,所以我希望有人能告诉我哪里出了问题。我确实注意到,在实际的selenium测试文件中,我没有使用任何Testng函数或任何东西,只使用selenium web驱动程序。我在下面列出了我的代码文件和测试结果。
再次道歉,如果我错过了一个简单的步骤,或者我正在尝试一些不可能的事情,我只需要专家的帮助或正确的方向。感谢您提前提供的任何帮助。
测验
出于安全原因,我已经删除了实际的URL和Cred。
package testing;
import static org.junit.Assert.fail;
import java.util.concurrent.TimeUnit;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import org.openqa.selenium.Alert;
import org.openqa.selenium.By;
import org.openqa.selenium.NoAlertPresentException;
import org.openqa.selenium.NoSuchElementException;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.firefox.FirefoxDriver;
import org.testng.Assert;
public class login {
private WebDriver driver;
private String baseUrl;
private boolean acceptNextAlert = true;
private StringBuffer verificationErrors = new StringBuffer();
@Before
public void setUp() throws Exception {
System.setProperty("webdriver.gecko.driver","C:\\gecko\\geckodriver.exe");
driver = new FirefoxDriver();
baseUrl = "";
driver.manage().timeouts().implicitlyWait(30, TimeUnit.SECONDS);
}
@Test
public void testLogin() throws Exception {
driver.get(baseUrl + "");
driver.findElement(By.id("email")).clear();
d
river.findElement(By.id("email")).sendKeys("");
driver.findElement(By.id("password")).clear();
driver.findElement(By.id("password")).sendKeys("");
driver.findElement(By.xpath("//input[@value='Login »']")).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;
}
}
private boolean isAlertPresent() {
try {
driver.switchTo().alert();
return true;
} catch (NoAlertPresentException e) {
return false;
}
}
private String closeAlertAndGetItsText() {
try {
Alert alert = driver.switchTo().alert();
String alertText = alert.getText();
if (acceptNextAlert) {
alert.accept();
} else {
alert.dismiss();
}
return alertText;
} finally {
acceptNextAlert = true;
}
}
}
测试NG。xml
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd">
<suite name="Sample Suite">
<test name="Learning Jenkins">
<classes>
<class name="testing.login"></class>
</classes>
</test>
</suite>
CLI或Jenkins测试结果
[TestNG] Running:
C:\Users\keating99\workspace\FdimTests\testng.xml
===============================================
Sample Suite
Total tests run: 0, Failures: 0, Skips: 0
===============================================
Finished: SUCCESS
我再次意识到我在实际测试中没有使用任何Testng,但我测试的目的只是启动selenium来运行测试。也许我做得不对。
selenium测试是有效的,我可以从Eclipse中启动。
提前感谢您的帮助!