selenium execute js statement

4. selenium browser to execute control js code

selenium allows the browser to execute the provisions of our js code, run the following code to view operating results

import time
from selenium import webdriver

driver = webdriver.Chrome()
driver.get("http://www.itcast.cn/")
time.sleep(1) js = 'window.scrollTo(0,document.body.scrollHeight)' # js语句 driver.execute_script(js) # 执行js的方法 time.sleep(5) driver.quit() 
  • Js method of execution:driver.execute_script(js)

Knowledge Point: selenium master the methods to control the browser js code execution

Guess you like

Origin www.cnblogs.com/wangdongpython/p/10958783.html