登录操作,由于浏览器记录了该网页其他账号的信息,clear()方法失效的替换方案
from selenium.webdriver import ActionChains
from selenium.webdriver.common.keys import Keys
def double_click_element(self,locator):
"""
双击操作
@param locator: 定位器
@return: None
"""
input_box = self.get_element(locator)
ActionChains(self.driver).double_click(input_box).perform()
文本输入框操作
def input_text(self,locator, text,append=False):
"""
清空原内容后再输入内容
保留原内容追加输入内容
@param locator: 定位器
@param text: 输入内容
@param append: True是追加输入,Flase是清空后输入
@return:
"""
ele = self.get_element(locator)
if not append:
'-----方案一,通过双击,然后send_keys(text)。缺点有时双击不一定选中所有内容,可能存在无法清除的风险-----'
'-----方案二,通过键盘的快捷键进行全选,然后删除-----'
ele.send_keys(Keys.CONTROL,"a")
ele.send_keys(Keys.DELETE)
ele.send_keys(text)
else:
ele.send_keys(text)
参考博客 WEB自动化——解决python selenium使用clear清除文本框内容失效的问题 原文链接:https://blog.csdn.net/weixin_42290966/article/details/104550659
|