有些元素,明明定位而没错,但是一点击就报错,可能有鼠标悬浮动作。
作者:互联网
# 鼠标悬浮 from selenium.webdriver import ActionChains data_gslx = driver.find_element_by_xpath('//div[text()="有限责任公司"]') #选择公司类型 action = ActionChains(driver) action.move_to_element(data_gslx).perform() time.sleep(0.2) data_gslx.click() # 使用js脚本写入日期 js_cmp_regist_date ="document.getElementById('LimitedCompanyDate').value='2019-1-12';" driver.execute_script(js_cmp_regist_date) #注册日期
标签:鼠标,gslx,悬浮,regist,driver,js,ActionChains,报错,data 来源: https://www.cnblogs.com/momoon/p/12230490.html