webdriver高级应用- 操作富文本框
富文本框的技术实现和普通的文本框的定位存在较大的区别,富文本框的常见技术用到了Frame标签,并且在Frame里面实现了一个完整的HTML网页结构,所以使用普通的定位模式将无法直接定位到富文本框对象。
方法一:调用WebDriver的send_key()方法实现
#encoding=utf-8
from selenium import webdriver
import unittest, time, traceback
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC
from selenium.common.exceptions import TimeoutException, NoSuchElementException
from selenium.webdriver.common.by import By class TestDemo(unittest.TestCase): def setUp(self):
# 启动Firefox浏览器
#self.driver = webdriver.Ie(executable_path = "e:\\IEDriverServer")
self.driver = webdriver.Firefox(executable_path="e:\\geckodriver") def test_SohuMailSendEMail(self):
url = "http://mail.sohu.com"
# 访问搜狐邮箱登录页
self.driver.get(url)
try:
userName = self.driver.find_element_by_xpath\
(u'//input[@placeholder="请输入您的邮箱"]')
userName.clear()
userName.send_keys("fosterwu")
passWord = self.driver.find_element_by_xpath\
(u'//input[@placeholder="请输入您的密码"]')
passWord.clear()
passWord.send_keys("1111")
login = self.driver.find_element_by_xpath(u'//input[@value="登 录"]')
login.click()
wait = WebDriverWait(self.driver, 10)
# 显示等待,确定页面是否成功登录并跳转到登录成功后的首页
wait.until(EC.element_to_be_clickable\
((By.XPATH, '//li[text()="写邮件"]')))
self.driver.find_element_by_xpath(u'//li[text()="写邮件"]').click()
time.sleep(2)
receiver = self.driver.find_element_by_xpath\
('//div[@arr="mail.to_render"]//input')
# 输入收件人
receiver.send_keys("fosterwu@sohu.com")
subject = self.driver.find_element_by_xpath\
('//input[@ng-model="mail.subject"]')
# 输入邮件标题
subject.send_keys(u"一封测试邮件!")
# 获取邮件正文编辑区域的iframe页面元素对象
iframe = self.driver.find_element_by_xpath\
('//iframe[contains(@id, "ueditor")]')
# 通过switch_to.frame()方法切换进入富文本框中
self.driver.switch_to.frame(iframe)
# 获取富文本框中编辑页面元素对象
editBox = self.driver.find_element_by_xpath("/html/body")
# 输入邮件正文
editBox.send_keys(u"邮件的正文内容")
# 从富文本框中切换出,回到默认页面
self.driver.switch_to.default_content()
# 找到页面上的“发送”按钮,并单击它
self.driver.find_element_by_xpath('//span[.="发送"]').click()
# 显示都等待含有关键字串“发送成功”的页面元素出现在页面中
wait.until(EC.visibility_of_element_located\
((By.XPATH, '//span[.="发送成功"]')))
print u"邮件发送成功"
except TimeoutException:
print u"显示等待页面元素超时"
except NoSuchElementException:
print u"寻找的页面元素不存在", traceback.print_exc()
except Exception:
# 打印其他异常堆栈信息
print traceback.print_exc() def tearDown(self):
# 退出IE浏览器
self.driver.quit() if __name__ == '__main__':
unittest.main()
优点:实现简单,只要调用WebDriver对页面元素对象提供的send_keys()方法,即可实现内容输入
缺点:必须能定位到要被操作的元素,对脚本编写人员的定位能力要求比较高,同时不支持HTML格式的内容输入
方法二:
#encoding=utf-8
from selenium import webdriver
import unittest, time, traceback
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC
from selenium.common.exceptions import TimeoutException, NoSuchElementException
from selenium.webdriver.common.by import By class TestDemo(unittest.TestCase): def setUp(self):
# 启动Firefox浏览器
#self.driver = webdriver.Firefox(executable_path="c:\\geckodriver")
self.driver = webdriver.Ie(executable_path = "e:\\IEDriverServer")
def test_SohuMailSendEMail(self):
url = "http://mail.sohu.com"
# 访问搜狐邮箱登录页
self.driver.get(url)
try:
userName = self.driver.find_element_by_xpath\
('//input[@placeholder="请输入您的邮箱"]')
userName.clear()
userName.send_keys("fosterwu")
passWord = self.driver.find_element_by_xpath\
('//input[@placeholder="请输入您的密码"]')
passWord.clear()
passWord.send_keys("")
login = self.driver.find_element_by_xpath('//input[@value="登 录"]')
login.click()
wait = WebDriverWait(self.driver, 10)
# 显示等待,确定页面是否成功登录并跳转到登录成功后的首页
wait.until(EC.element_to_be_clickable\
((By.XPATH, '//li[text()="写邮件"]')))
self.driver.find_element_by_xpath('//li[text()="写邮件"]').click()
time.sleep(2)
receiver = self.driver.find_element_by_xpath\
('//div[@arr="mail.to_render"]//input')
# 输入收件人
receiver.send_keys("fosterwu@sohu.com")
subject = self.driver.find_element_by_xpath\
('//input[@ng-model="mail.subject"]')
# 输入邮件标题
subject.send_keys(u"一封测试邮件!")
# 获取邮件正文编辑区域的iframe页面元素对象
iframe = self.driver.find_element_by_xpath\
('//iframe[contains(@id, "ueditor")]')
# 通过switch_to.frame()方法切换进入富文本框中
self.driver.switch_to.frame(iframe)
# 通过JavaScript代码向邮件正文编辑框中输入正文
self.driver.execute_script("document.getElementsByTagName('body')\
[0].innerHTML='<b>邮件的正文内容<b>;'")
# 从富文本框中切换出,回到默认页面
self.driver.switch_to.default_content()
# 找到页面上的“发送”按钮,并单击它
self.driver.find_element_by_xpath('//span[.="发送"]').click()
# 显示都等待含有关键字串“发送成功”的页面元素出现在页面中
wait.until(EC.visibility_of_element_located\
((By.XPATH, '//span[.="发送成功"]')))
print u"邮件发送成功"
except TimeoutException:
print u"显示等待页面元素超时"
except NoSuchElementException:
print u"寻找的页面元素不存在", traceback.print_exc()
except Exception:
# 打印其他异常堆栈信息
print traceback.print_exc() def tearDown(self):
# 退出IE浏览器
self.driver.quit() if __name__ == '__main__':
unittest.main()
优点:可以支持HTML格式的文字内容作为富文本框的输入内容
缺点:由于各种网页中富文本框实现的机制可能不同,有可能造成定位到富文本框的文本编辑区对象比较困难,此时就需要熟练了解HTML代码含义以及Frame的进出方式,对脚本编写人员的能力要求比较高
方法三:
#encoding=utf-8
from selenium import webdriver
import unittest, time, traceback
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC
from selenium.common.exceptions import TimeoutException, NoSuchElementException
from selenium.webdriver.common.by import By
from selenium.webdriver.common.keys import Keys
import win32clipboard as w
import win32api, win32con # 用于设置剪切板内容
def setText(aString):
w.OpenClipboard()
w.EmptyClipboard()
w.SetClipboardData(win32con.CF_UNICODETEXT, aString)
w.CloseClipboard() # 键盘按键映射字典
VK_CODE = {'ctrl':0x11, 'v':0x56} # 键盘键按下
def keyDown(keyName):
win32api.keybd_event(VK_CODE[keyName], 0, 0, 0)
# 键盘键抬起
def keyUp(keyName):
win32api.keybd_event(VK_CODE[keyName], 0, win32con.KEYEVENTF_KEYUP, 0) class TestDemo(unittest.TestCase): def setUp(self):
# 启动Firefox浏览器
self.driver = webdriver.Firefox(executable_path="e:\\geckodriver") def test_SohuMailSendEMail(self):
url = "http://mail.sohu.com"
# 访问搜狐邮箱登录页
self.driver.get(url)
try:
userName = self.driver.find_element_by_xpath\
('//input[@placeholder="请输入您的邮箱"]')
userName.clear()
userName.send_keys("fosterwu")
passWord = self.driver.find_element_by_xpath\
('//input[@placeholder="请输入您的密码"]')
passWord.clear()
passWord.send_keys("")
login = self.driver.find_element_by_xpath('//input[@value="登 录"]')
login.click()
wait = WebDriverWait(self.driver, 10)
# 显示等待,确定页面是否成功登录并跳转到登录成功后的首页
wait.until(EC.element_to_be_clickable\
((By.XPATH, '//li[text()="写邮件"]')))
self.driver.find_element_by_xpath('//li[text()="写邮件"]').click()
time.sleep(2)
receiver = self.driver.find_element_by_xpath\
('//div[@arr="mail.to_render"]//input')
# 输入收件人
receiver.send_keys("xxxx")
subject = self.driver.find_element_by_xpath\
('//input[@ng-model="mail.subject"]')
# 输入邮件标题
subject.send_keys(u"一封测试邮件!")
# 输入完邮件标题后,按下Tab键可以将页面焦点切换到富文本框编辑区域
subject.send_keys(Keys.TAB)
# 设置剪切板内容,也就是将要输入的正文内容
setText(u"邮件正文内容")
# 模拟键盘的Ctrl + v组合键,将剪切板内容粘贴到富文本编辑区中
keyDown("ctrl")
keyDown("v")
keyUp("v")
keyUp("ctrl")
# 找到页面上的“发送”按钮,并单击它
self.driver.find_element_by_xpath('//span[.="发送"]').click()
# 显示都等待含有关键字串“发送成功”的页面元素出现在页面中
wait.until(EC.visibility_of_element_located\
((By.XPATH, '//span[.="发送成功"]')))
print u"邮件发送成功"
except TimeoutException:
print u"显示等待页面元素超时"
except NoSuchElementException:
print u"寻找的页面元素不存在", traceback.print_exc()
except Exception:
# 打印其他异常堆栈信息
print traceback.print_exc() def tearDown(self):
# 退出IE浏览器
self.driver.quit() if __name__ == '__main__':
unittest.main()
优点:不管任何类型的富文本框,只要找到它上面的近邻近邻元素,然后通过模拟按Tab键的方式均可进入到富文本框,有此可以使用一种方法解决所有类型的富文本框定位问题。
缺点:不能在富文本框编辑器中进行HTML格式的内容输入。
webdriver高级应用- 操作富文本框的更多相关文章
- python webdriver api-操作富文本框
操作富文本框-就是邮件正文部分,可以选字体啥的 第一种方式: 一般都是在iframe里,要切进去,一般是”html/body”,编辑之后,再切出来,然后再send_keys就完事儿 #encoding ...
- Selenium示例集锦--常见元素识别方法、下拉框、文本域及富文本框、鼠标操作、一组元素定位、弹窗、多窗口处理、JS、frame、文件上传和下载
元素定位及其他操作 0.常见的识别元素的方法是什么? driver.find_element_by_id() driver.find_element_by_name() driver.find_ele ...
- django(7)modelform操作及验证、ajax操作普通表单数据提交、文件上传、富文本框基本使用
一.modelForm操作及验证 1.获取数据库数据,界面展示数据并且获取前端提交的数据,并动态显示select框中的数据 views.py from django.shortcuts import ...
- Java + selenium 元素定位(6)之iframe切换(即对富文本框的操作)
在元素定位中,对富文本框的元素定位是特别的,当我们使用普通的元素定位方法对富文本框进行操作时,我们会发现不管我们之前介绍的八种方法中的任何方法,我们都不能成功定位到富文本框,并对其进行操作.那是因为富 ...
- vue集成CKEditor构建框架的使用,遇到富文本框不出现工具栏等操作
官方关于Vue集成CKEditor富文本框的文档:https://ckeditor.com/docs/ckeditor5/latest/builds/guides/integration/framew ...
- Selenium常用API用法示例集----下拉框、文本域及富文本框、弹窗、JS、frame、文件上传和下载
元素识别方法.一组元素定位.鼠标操作.多窗口处理.下拉框.文本域及富文本框.弹窗.JS.frame.文件上传和下载 元素识别方法: driver.find_element_by_id() driver ...
- H5页面设计器,仿有赞商城页面在线设计器,比富文本框更友好的内容编辑器
基本上每个web应用,都会牵扯到内容编辑,尤其是移动的web应用,微信开发之类的.页面内容自定义是最常用的功能了,之前大部分解决方案都是采用富文本框编辑器kindeditor,ueditor,cked ...
- Android 富文本框实现 RichEditText
Android系统自带控件没有富文本框控件,如果想写一封带格式的邮件基本上不可能,EdtiText只有默认一种格式,显示不能滿足要求,!!正好项目需要研究了一下,开发了此控件,现将一些源代码开放一下, ...
- 第三百九十五节,Django+Xadmin打造上线标准的在线教育平台—Xadmin集成富文本框
第三百九十五节,Django+Xadmin打造上线标准的在线教育平台—Xadmin集成富文本框 首先安装DjangoUeditor3模块 Ueditor HTML编辑器是百度开源的HTML编辑器 下载 ...
随机推荐
- codevs 4888 零件分组
4888 零件分组 时间限制: 1 s 空间限制: 16000 KB 题目等级 : 黄金 Gold 题解 查看运行结果 题目描述 Description 现有一些棍状零件,每个零件都有 ...
- Kendo MVVM 数据绑定(七) Invisible/Visible
Kendo MVVM 数据绑定(七) Invisible/Visible Invisible/Visible 绑定可以根据 ViewModel 的某个属性来显示/隐藏 DOM 元素.例如: <d ...
- 理解 JavaScript 的 async/await
随着 Node 7 的发布,越来越多的人开始研究据说是异步编程终级解决方案的 async/await.我第一次看到这组关键字并不是在 JavaScript 语言里,而是在 c# 5.0 的语法中.C# ...
- Spring.Net 能为我们做点什么
本文内容 概述 背景 模块 使用场景 入门应用 Spring.NET 相关项目 本文正式开始前,我以目前所能想到的.此时此刻能想到的,先简单说下,为什么会有像 Spring.Net 这样的东西.首先, ...
- mysql-练级查询
mysql的链接查询中主要有五大类链接查询 1.内连接查询 1.1:等值链接查询:指使用等号"="比较两个表的连接列的值,相当于两表执行笛卡尔后,取两表连结列值相等的记录. SEL ...
- External Pricing in C4C and ERP
从下图可以看出,C4C的Opportunity,Sales Quote和Sales Order这些business transaction没有自己的pricing engine,使用的是在ERP Pr ...
- SAP Cloud for Customer客户主数据的地图集成
点击这个按钮可以通过地图的方式查看C4C客户在地图上的地理位置: 只需要在这个客户的地址栏里维护上天府软件园的经度和维度: 就能够在C4C的客户列表页面里显示该客户在地图上的位置: 要获取更多Jerr ...
- Android内核剖析(1)
Linux的启动过程 开机上电执行bootloader,将内核的前n条指令加载到系统内存中------>系统内核的初始化----------->启动应用程序. bootloader的位置装 ...
- 网站被K怎么办?
网站被K怎么办? 网站被K有几种状况,一种是网站的主页被删去或许网站悉数内容被删去就剩主页,还有一种是内容也在第“一”页,主页在后面,这种状况对初学者来讲是不会去留意的,他们会觉得这是正常的,其实这个 ...
- 使用EventLog组件读写事件日志
实现效果: 知识运用: Eventlog类的SourceExists方法 //确定指定的事件源是否已在本地计算机注册 public static bool SourceExists(string s ...