Python-selenium - 輸入文字/輸入帳號密碼/textbox

 使用selenium輸入帳號密碼或是在對話框輸入內容

範例使用Google首頁,在搜尋欄打上Python

首先取得搜尋欄位xpath

若不會找xpath 請點我


完整程式碼

from selenium import webdriver

driver = webdriver.Chrome()

driver.get('http://www.google.com/')

driver.implicitly_wait(6)

driver.find_element_by_xpath('//*[@id="tsf"]/div[2]/div[1]/div[1]/div/div[2]/input').send_keys('Python')

執行就會看到輸入成功!

看到搜尋欄中出現python!

留言