Selenium:如何使用web Driver设置selenium

时间:2012-10-08 04:21:09

标签: selenium selenium-webdriver

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

请告诉我如何设置我的测试用例。

我不想使用Selenium IDE

由于

2 个答案:

答案 0 :(得分:1)

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

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

HTH

答案 1 :(得分: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

 }

}