程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
您现在的位置: 程式師世界 >> 編程語言 >  >> 更多編程語言 >> Python

Python+selenium first script

編輯:Python

background : Arrears before reissue ,17 It was written locally in , Never uploaded
This is the first script for beginners

#coding=utf-8
# To prevent garbled code , And it is convenient to add Chinese Notes in the program 
from selenium import webdriver
# Import selenium Of webdriver package , Only import , Can be used webdriver Development scripts 
import time
# Import the time module 
driver = webdriver.Firefox()
time.sleep(4)
# hold webdriver Of firefox Object assigned to variable driver, Only after you get the object of the browser , You can start the browser 
driver.get('https://www.baidu.com')
# After getting the browser object , adopt get() Method , Send... To browser URL Address 
driver.find_element_by_id("kw").send_keys("selenium")
# adopt id Locate the input box , The back can speak 
driver.find_element_by_id("su").click()
# adopt id location “ use Baidu Search ”, The back can speak 
time.sleep(4)
# wait 4 second 
driver.quit()
# Close the browser 

  1. 上一篇文章:
  2. 下一篇文章:
Copyright © 程式師世界 All Rights Reserved