无法从Selenium IDE打开jar文件

时间:2017-03-06 07:34:09

标签: selenium

我无法打开之前从selenium ide导出为jar文件的测试用例文件 步骤进行:

1)打开selenium ide并记录测试用例

2)将测试用例导出为jar文件

3)关闭selenium ide

4)再次打开selenium ide

5)文件 - >开> file.jar

它将显示以下错误:错误加载测试用例没有找到命令

任何帮助?

1 个答案:

答案 0 :(得分:0)

保存Selenium IDE录制文件的默认格式是HTML。例如:

<?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://en.wikipedia.org/" />
<title>selenium</title>
</head>
<body>
<table cellpadding="1" cellspacing="1" border="1">
<thead>
<tr><td rowspan="1" colspan="3">selenium</td></tr>
</thead><tbody>
<tr>
    <td>open</td>
    <td>/wiki/Main_Page</td>
    <td></td>
</tr>
<tr>
    <td>type</td>
    <td>id=searchInput</td>
    <td>selenium software</td>
</tr>
<tr>
    <td>clickAndWait</td>
    <td>id=searchButton</td>
    <td></td>
</tr>
<tr>
    <td>clickAndWait</td>
    <td>//div[@id='mw-content-text']/div/ul/li/div/a/span[2]</td>
    <td></td>
</tr>

</tbody></table>
</body>
</html>

该文件可以在Selenium IDE中加载(选项File-&gt; Open),但不能加载JAR。更多信息here