Python selenium 操作input 重新赋值
1. 再自动化测试中,经常出现input 重新赋值的情况,代码如下:
# 引入模块
from selenium.webdriver.common.keys import Keys
# 获取指定的dom
singleAdd_productCode = webdriver.find_element_by_id('SingleAdd_productCode')
# 选中input 框的所有内容
singleAdd_productCode.send_keys(Keys.CONTROL+'a')
# 删除选中的内容
singleAdd_productCode.send_keys(Keys.DELETE)
# 重新赋值
singleAdd_productCode.send_keys(outerSkuCode)