Posted in Python onJanuary 02, 2019
div的内容为:
<div style="background-color: rgb(255, 238, 221);" id="status" class="errors">您输入的用户名或密码有误。</div>
# coding:utf-8 from selenium import webdriver browser = webdriver.Firefox() url = 'file:///C:/Users/li/Desktop/hello.html' browser.get(url) alert_inf = "您输入的用户名或密码有误。" s = browser.find_element_by_xpath("//div[@id='status']") b = s.text print b if b.encode('utf-8') == alert_inf: print "哈哈哈!ok啦!" else: print "呀,出错了! 不好玩!"
以上这篇在python中获取div的文本内容并和想定结果进行对比详解就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持三水点靠木。
在python中获取div的文本内容并和想定结果进行对比详解
- Author -
请叫我怪兽_谢谢声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@