這篇文章給大家介紹怎么進行Selenium IDE的安裝使用,內(nèi)容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。
主要從事網(wǎng)頁設(shè)計、PC網(wǎng)站建設(shè)(電腦版網(wǎng)站建設(shè))、wap網(wǎng)站建設(shè)(手機版網(wǎng)站建設(shè))、響應(yīng)式網(wǎng)站開發(fā)、程序開發(fā)、微網(wǎng)站、微信小程序開發(fā)等,憑借多年來在互聯(lián)網(wǎng)的打拼,我們在互聯(lián)網(wǎng)網(wǎng)站建設(shè)行業(yè)積累了豐富的網(wǎng)站設(shè)計制作、網(wǎng)站設(shè)計、網(wǎng)絡(luò)營銷經(jīng)驗,集策劃、開發(fā)、設(shè)計、營銷、管理等多方位專業(yè)化運作于一體,具備承接不同規(guī)模與類型的建設(shè)項目的能力。
今天將學習使用一個非常有用的瀏覽器插件Selenium IDE,用于網(wǎng)站的測試和自動化,這里以谷歌瀏覽器作為測試。
插件下載地址為:
https://chrome.google.com/webstore/detail/selenium-ide/mooikfkahbdckldjjndioackbalphokd
我們點擊添加至chrome完成插件的安裝:
插件安裝完成后會在導航欄出現(xiàn)一個se的圖標:
我們點擊圖標會彈出一個對話框,讓我們選擇如何創(chuàng)建項目:
這里我們選擇第一項Record a new test in a new project(新建項目并記錄一個新的測試),輸入項目名稱taobao-serach(用淘寶作為測試網(wǎng)址):
點擊ok后,輸入要監(jiān)控的網(wǎng)址:
點擊START RECORDING開始記錄,會自動打開淘寶網(wǎng)頁 并出現(xiàn)記錄標記:
在彈出的IDE中點擊右上方的紅色停止記錄按鈕后中間會出現(xiàn)所有動作的記錄過程:
點擊上圖中左側(cè)區(qū)域中的Untitled為這個測試案例命名為hjc element search:
接下來看IDE中基本的操作按鈕釋義:
點擊左側(cè)測試案例可將用例導出:
這里我們導出為python的pytest用例:
會生成一個python文件名字為test_hjchelmentsearch.py:
具體代碼如下:
# Generated by Selenium IDE
import pytest
import time
import json
from selenium import webdriver
from selenium.webdriver.common.by import By
from selenium.webdriver.common.action_chains import ActionChains
from selenium.webdriver.support import expected_conditions
from selenium.webdriver.support.wait import WebDriverWait
from selenium.webdriver.common.keys import Keys
class TestHjchelmentsearch():
def setup_method(self, method):
self.driver = webdriver.Chrome('chromedriver.exe')
self.vars = {}
def teardown_method(self, method):
self.driver.quit()
def wait_for_window(self, timeout = 2):
time.sleep(round(timeout / 1000))
wh_now = self.driver.window_handles
wh_then = self.vars["window_handles"]
if len(wh_now) > len(wh_then):
return set(wh_now).difference(set(wh_then)).pop()
def test_hjchelmentsearch(self):
self.driver.get("https://www.taobao.com/")
self.driver.set_window_size(1382, 744)
self.driver.find_element(By.ID, "q").send_keys(Keys.DOWN)
self.driver.find_element(By.ID, "q").send_keys("hjc頭盔")
self.driver.find_element(By.ID, "q").send_keys(Keys.ENTER)
self.vars["window_handles"] = self.driver.window_handles
self.driver.find_element(By.ID, "J_Itemlist_Pic_42600889855").click()
self.vars["win7263"] = self.wait_for_window(2000)
self.vars["root"] = self.driver.current_window_handle
self.driver.switch_to.window(self.vars["win7263"])
self.driver.execute_script("window.scrollTo(0,78)")
self.driver.find_element(By.CSS_SELECTOR, "li:nth-child(8) > a > span").click()
element = self.driver.find_element(By.CSS_SELECTOR, ".tb-img > li:nth-child(6) span")
actions = ActionChains(driver)
actions.move_to_element(element).perform()
element = self.driver.find_element(By.CSS_SELECTOR, "body")
actions = ActionChains(driver)
actions.move_to_element(element, 0, 0).perform()
element = self.driver.find_element(By.CSS_SELECTOR, ".tb-prop:nth-child(1) li:nth-child(6) span")
actions = ActionChains(driver)
actions.move_to_element(element).perform()
self.driver.find_element(By.CSS_SELECTOR, ".tb-prop:nth-child(1) li:nth-child(6) span").click()
element = self.driver.find_element(By.CSS_SELECTOR, "body")
actions = ActionChains(driver)
actions.move_to_element(element, 0, 0).perform()
self.driver.close()
self.driver.switch_to.window(self.vars["root"])
self.driver.close()
#以下是我自己加入的初始化運行代碼
hjc = TestHjchelmentsearch()
hjc.setup_method(None)
hjc.test_hjchelmentsearch()
hjc.teardown_method()
如下代碼可運行作為測試用例。
關(guān)于怎么進行Selenium IDE的安裝使用就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。