真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網站制作重慶分公司

selenium學習:獲取驗證信息

獲得驗證信心的方式分別是:title URL text

專注于為中小企業(yè)提供成都做網站、網站制作、成都外貿網站建設服務,電腦端+手機端+微信端的三站合一,更高效的管理,為中小企業(yè)比如免費做網站提供優(yōu)質的服務。我們立足成都,凝聚了一批互聯(lián)網行業(yè)人才,有力地推動了1000多家企業(yè)的穩(wěn)健成長,幫助中小企業(yè)通過網站建設實現(xiàn)規(guī)模擴充和轉變。

from selenium import webdriver
from time import *
driver = webdriver.Chrome()
url = 'http://home.51cto.com/index?reback=http://9603083.blog.51cto.com/'
driver.get(url)

#打印當前頁面
title = driver.title
print(title)

#打印當前頁面URL
now_url = driver.current_url
print(now_url)

#執(zhí)行登陸
driver.find_element_by_xpath('//*[@id="loginform-username"]').clear()
driver.find_element_by_xpath('//*[@id="loginform-username"]').send_keys('91ctt')

driver.find_element_by_xpath('//*[@id="loginform-password"]').clear()
driver.find_element_by_xpath('//*[@id="loginform-password"]').send_keys('CTT1106648034')

driver.find_element_by_xpath('//*[@id="login-form"]/div[3]/input').click()

sleep(3)

#再次打印當前頁面
title = driver.title
print(title)
#打印當前頁面URL
now_url = driver.current_url
print(now_url)

#獲取用戶名
usr = driver.find_element_by_xpath('/html/head/meta[3]').text
print(usr)

sleep(3)
driver.quit()

本文標題:selenium學習:獲取驗證信息
本文URL:http://weahome.cn/article/ipejis.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部