如何从Netbeans运行Selenium测试

时间:2013-02-25 05:33:52

标签: java testing netbeans selenium

我在Selenium IDE中构建了一个测试用例。 现在,我怎样才能最简单地实现从Netbeans运行的测试用例?

我的Netbeans版本是7.2。 Selenium服务器在我的Netbeans服务中运行。 这是我搜索Google的简单测试用例。我试图导出为Java / Junit文件。 Netbeans显示缺少类路径。

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head profile="http://selenium-ide.openqa.org/profiles/test-case">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<link rel="selenium.base" href="https://www.google.co.in/" />
<title>google_search</title>
</head>
<body>
<table cellpadding="1" cellspacing="1" border="1">
<thead>
<tr><td rowspan="1" colspan="3">google_search</td></tr>
</thead><tbody>
<tr>
    <td>open</td>
    <td>/</td>
    <td></td>
</tr>
<tr>
    <td>click</td>
    <td>id=gbqfq</td>
    <td></td>
</tr>
<tr>
    <td>type</td>
    <td>id=gbqfq</td>
    <td>selenium</td>
</tr>
</tbody></table>
</body>
</html>

1 个答案:

答案 0 :(得分:1)

在IDE中打开一个新的Java项目。

下载Selenium独立服务器here

将jar文件放在lib中,然后单击Start以创建Selenium测试用例。

如果您想在Chrome上运行它,请下载chromedriver.exe文件here

要在IE上运行,请为相应位版本here

下载IEDriverServer.exe

示例代码:

 WebDriver driver  = new FirefoxDriver();
 driver.get("URL");
 //Do some actions
 driver.quit();