0
我已經在Selenium IDE中構建了一個測試用例。 現在,我如何才能最簡單地實現從Netbeans運行的測試用例?如何從Netbeans運行Selenium測試
我的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>