91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

JavaScript腳本怎么在Selenium中執行

發布時間:2020-12-31 15:14:26 來源:億速云 閱讀:220 作者:Leah 欄目:開發技術

JavaScript腳本怎么在Selenium中執行?針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。

JavaScript是運行在客戶端(瀏覽器)和服務器端的腳本語言,允許將靜態網頁轉換為交互式網頁。可以通過 Python Selenium WebDriver 執行 JavaScript 語句,在Web頁面中進行js交互。那么js能做的事,Selenium應該大部分也能做。WebDriver是模擬終端用戶的交互,所以就不能點擊不可見的元素,有時可見元素也不能點擊。在這些情況下,我們就可以通過WebDriver 執行JavaScript來點擊或者執行頁面元素。本文將介紹如何使用 WebDriver執行 JavaScript語句。

Web元素定位及操作

使用execute_script() 執行 JavaScript 代碼,有兩種方法實現元素操作

方法1:文檔級別操作

直接使用JavaScript實現元素定位和動作執行,主要方法有:

document.getElementById
document.getElementsByClassName
document.getElementsByName
document.getElementsByTagName
document.getElementsByTagNameNS

測試示例:

  • 打開百度一下

  • 輸入框輸入”test“

  • 點擊百度一下

python代碼:

def test_baidu(self):
  self.driver.get("http://www.baidu.com")
  self.driver.execute_script('document.getElementById("kw").value = "test"')
  time.sleep(2)
  self.driver.execute_script('document.getElementById("su").click()')
  time.sleep(2)

在執行過程中,WebDriver 將 JavaScript 語句注入到瀏覽器中,然后腳本將執行。這個注入 JavaScript 有自己的名稱空間,不會干擾實際網頁中的 JavaScript運行。

方法2:元素級別操作

可以先使用WebDriver獲取想要操作的元素,然后使用JavaScript執行操作。

input_ele = driver.find_element_by_id("su") 
driver.execute_script("arguments[0].click();", input_ele)

python代碼:

def test_baidu2(self):
  self.driver.get("http://www.baidu.com")
  input_ele = self.driver.find_element_by_id("kw")
  self.driver.execute_script("arguments[0].value = 'test';", input_ele)
  time.sleep(2)
  baidu_ele = self.driver.find_element_by_id("su")
  self.driver.execute_script("arguments[0].click();", baidu_ele)
  time.sleep(2)

可以在語句中使用多個 JavaScript動作:

username = driver.find_element_by_xpath("//*[@id='username']")
password = driver.find_element_by_xpath("//*[@id='password']")
driver.execute_script("arguments[0].value = 'admin';arguments[1].value = 'admin';", username, password)

獲取返回值

可以返回JavaScript的執行結果:

driver.execute_script("return document.getElementById('kw').value")
driver.execute_script("return document.title;") # 返回網頁標題

滑動

在 Web自動化測試 | ActionChains、TouchAction 中介紹了TouchAction類中scroll_from_element()也可以滑動頁面。

滑動到瀏覽器底部

document.documentElement.scrollTop=10000
window.scrollTo(0, document.body.scrollHeight)

滑動到瀏覽器頂部

document.documentElement.scrollTop=0
window.scrollTo(document.body.scrollHeight,0)

更改元素屬性

大部分時間控件都是 readonly屬性,需要手動去選擇對應的時間。自動化測試中,可以使用JavaScript代碼取消readonly屬性。

測試頁面: https://www.12306.cn/index/

JavaScript腳本怎么在Selenium中執行

測試步驟:

  • 打開測試頁面

  • 修改出發日期

  • 斷言日期是否修改成功

python測試代碼:

def test_datettime(self):
  self.driver.get("https://www.12306.cn/index/")
  # 取消readonly屬性
  self.driver.execute_script("dat=document.getElementById('train_date'); dat.removeAttribute('readonly')")  
  self.driver.execute_script("document.getElementById('train_date').value='2020-10-01'")
  time.sleep(3)
  now_time = self.driver.execute_script("return document.getElementById('train_date').value")
  assert '2020-10-01' == now_time

關于JavaScript腳本怎么在Selenium中執行問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

惠安县| 岳阳市| 阳东县| 深水埗区| 滨海县| 西充县| 达州市| 田阳县| 乌恰县| 寻甸| 台中县| 双江| 海口市| 尤溪县| 兴国县| 呼和浩特市| 冷水江市| 阿勒泰市| 光泽县| 稷山县| 理塘县| 莱州市| 九龙县| 怀集县| 扶风县| 洞头县| 襄城县| 浦县| 余姚市| 什邡市| 修武县| 桂阳县| 灵山县| 新宾| 宁晋县| 双牌县| 宜宾县| 尖扎县| 上蔡县| 芒康县| 云霄县|