我已经为登录Facebook编写了一个基本测试。之后我想写另一个发布状态的测试用例。我想为此创建一个新函数,但是如何在不重复整个登录过程的情况下执行此操作。
@Test
public void Facebook_LoginTest() {
String title= null;
// And now use this to visit facebook
driver.get("http://www.facebook.com ");
// Find the text input element by its name
WebElement id = driver.findElement(By.id("email"));
WebElement password = driver.findElement(By.id("pass"));
WebElement login = driver.findElement(By.id("loginbutton"));
// Enter something to search for
id.sendKeys("id@blah.com");
password.sendKeys("blahblahblah");
答案 0 :(得分:0)
将登录过程移至测试初始化方法(使用@Before注释)或Fixture初始化方法(使用@BeforeClass注释)