溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶(hù)服務(wù)條款》

怎么進(jìn)行Selenium IDE的安裝使用

發(fā)布時(shí)間:2021-11-09 18:39:04 來(lái)源:億速云 閱讀:185 作者:柒染 欄目:大數(shù)據(jù)

這篇文章給大家介紹怎么進(jìn)行Selenium IDE的安裝使用,內(nèi)容非常詳細(xì),感興趣的小伙伴們可以參考借鑒,希望對(duì)大家能有所幫助。

今天將學(xué)習(xí)使用一個(gè)非常有用的瀏覽器插件Selenium IDE,用于網(wǎng)站的測(cè)試和自動(dòng)化,這里以谷歌瀏覽器作為測(cè)試。

怎么進(jìn)行Selenium IDE的安裝使用

插件下載地址為:

https://chrome.google.com/webstore/detail/selenium-ide/mooikfkahbdckldjjndioackbalphokd

我們點(diǎn)擊添加至chrome完成插件的安裝:

怎么進(jìn)行Selenium IDE的安裝使用

插件安裝完成后會(huì)在導(dǎo)航欄出現(xiàn)一個(gè)se的圖標(biāo):

怎么進(jìn)行Selenium IDE的安裝使用

我們點(diǎn)擊圖標(biāo)會(huì)彈出一個(gè)對(duì)話(huà)框,讓我們選擇如何創(chuàng)建項(xiàng)目:

怎么進(jìn)行Selenium IDE的安裝使用

這里我們選擇第一項(xiàng)Record a new test in a new project(新建項(xiàng)目并記錄一個(gè)新的測(cè)試),輸入項(xiàng)目名稱(chēng)taobao-serach(用淘寶作為測(cè)試網(wǎng)址):

怎么進(jìn)行Selenium IDE的安裝使用

點(diǎn)擊ok后,輸入要監(jiān)控的網(wǎng)址:

怎么進(jìn)行Selenium IDE的安裝使用

點(diǎn)擊START RECORDING開(kāi)始記錄,會(huì)自動(dòng)打開(kāi)淘寶網(wǎng)頁(yè) 并出現(xiàn)記錄標(biāo)記:

怎么進(jìn)行Selenium IDE的安裝使用

在彈出的IDE中點(diǎn)擊右上方的紅色停止記錄按鈕后中間會(huì)出現(xiàn)所有動(dòng)作的記錄過(guò)程:

怎么進(jìn)行Selenium IDE的安裝使用

點(diǎn)擊上圖中左側(cè)區(qū)域中的Untitled為這個(gè)測(cè)試案例命名為hjc element search:

怎么進(jìn)行Selenium IDE的安裝使用

接下來(lái)看IDE中基本的操作按鈕釋義:

怎么進(jìn)行Selenium IDE的安裝使用

點(diǎn)擊左側(cè)測(cè)試案例可將用例導(dǎo)出:

怎么進(jìn)行Selenium IDE的安裝使用

這里我們導(dǎo)出為python的pytest用例:

怎么進(jìn)行Selenium IDE的安裝使用

會(huì)生成一個(gè)python文件名字為test_hjchelmentsearch.py:

怎么進(jìn)行Selenium IDE的安裝使用

具體代碼如下:

# Generated by Selenium IDEimport pytestimport timeimport jsonfrom selenium import webdriverfrom selenium.webdriver.common.by import Byfrom selenium.webdriver.common.action_chains import ActionChainsfrom selenium.webdriver.support import expected_conditionsfrom selenium.webdriver.support.wait import WebDriverWaitfrom 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()

#以下是我自己加入的初始化運(yùn)行代碼hjc = TestHjchelmentsearch()hjc.setup_method(None)hjc.test_hjchelmentsearch()hjc.teardown_method()

如下代碼可運(yùn)行作為測(cè)試用例。

關(guān)于怎么進(jìn)行Selenium IDE的安裝使用就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺(jué)得文章不錯(cuò),可以把它分享出去讓更多的人看到。

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI