0

我是使用 Web 驱动程序编写 selenium 测试用例的新手。

请让我知道如何设置我的测试用例。

注意:我不想使用 Selenium IDE。

谢谢

4

2 回答 2

1

您可以使用 selenium webdriver 从您的代码中驱动浏览器。从 firefox 驱动程序开始,因为您不需要对其进行任何设置。对于其他浏览器,如 chrome,即您需要设置驱动程序。您可以从这里开始:

http://seleniumhq.org/docs/03_webdriver.html#introducing-the-selenium-webdriver-api-by-example

高温高压

于 2012-10-08T06:00:38.153 回答
1

自己完成了设置..谢谢

@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations = {"classpath:testContextWeb.xml"})
public class SeleniumTest {

WebDriver driver;

@Before
public void setUp() throws Exception {
    driver = new FirefoxDriver();
}

@After
public void tearDown() throws Exception {
    driver.close();
}

@Test
public void testCase() throws Exception {
    //open the event page
    driver.get("https://websiteAddress/Context");


    driver.findElement(By.xpath(".//*[@id='username']")).sendKeys("someUserName");
    driver.findElement(By.xpath(".//*[@id='password']")).sendKeys("xxxx"); // "xxxx" means some password

 }

}
于 2012-10-08T06:26:22.343 回答