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