首页 > 编程 > Python > 正文

在python中获取div的文本内容并和想定结果进行对比详解

2020-01-04 13:38:40
字体:
来源:转载
供稿:网友

div的内容为:

<div style="background-color: rgb(255, 238, 221);" id="status" class="errors">您输入的用户名或密码有误。</div>

# coding:utf-8from selenium import webdriverbrowser = 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.textprint bif b.encode('utf-8') == alert_inf: print "哈哈哈!ok啦!"else: print "呀,出错了! 不好玩!"

以上这篇在python中获取div的文本内容并和想定结果进行对比详解就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持VEVB武林网。


注:相关教程知识阅读请移步到python教程频道。
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表