嘗試一個簡單的 Selenium 指令碼在 Google 上搜尋 Wikipedia
先決條件:
- 安裝 Firefox
- 安裝 Selenium IDE 外掛( https://addons.mozilla.org/fr/firefox/addon/selenium-ide/)
開啟外掛。必須顯示一個顯示紅色圓圈的按鈕。如果按下它,則表示你可以啟動你的方案。該外掛正在記錄你在此 Firefox 例項中執行的所有操作。
做你想要錄製的任何事情。
最後,儲存你的場景; 你會注意到 Selenium IDE 的場景是 html 檔案。
你還可以開啟其他使用者的檔案。例如,將下面的程式碼複製並貼上到新的 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://www.google.com/" />
<title>sample-test</title>
</head>
<body>
<table cellpadding="1" cellspacing="1" border="1">
<thead>
<tr><td rowspan="1" colspan="3">sample-test</td></tr>
</thead><tbody>
<tr>
<td>open</td>
<td>/</td>
<td></td>
</tr>
<tr>
<td>type</td>
<td>id=lst-ib</td>
<td>Wikipedia</td>
</tr>
</tbody></table>
</body>
</html>
這種 DSL(領域特定語言)通常被稱為 selenese
。
其中最常見的功能列於此處 。