问题: 当定位输入框时,定位到div标签,如:css->[class="delay el-input"],进行输入操作报invalid element state,显示元素状态无效 此时定位输入框时,定位到input标签,如:css->.delay input,再次进行输入操作时不会出现以上错误 总结: 当进行操作元素时报 invalid element state 错误,1.定位到元素所在标签:2.查看元素是否在同一个iframe:3.元素是否被隐藏…
在执行脚本时报Selenium.common.exceptions.WebDriverException: Message: Invalid locator strategy: css selector 的错 出现这个问题时请先检查你的selenium版本是否和Appium-Python-Client 的版本互相兼容 如果你的selenium是3.4的版本,需要下载 Appium-Python-Client 2.8的版本 如果selenium是2.53.6的请一定要下载 Appium-Pytho…
今天给大家分享一个selenium中经常会有人遇到的坑: selenium.common.exceptions.StaleElementReferenceException: Message: Element not found in the cache - perhaps the page has changed since it was looked up 群里经常会有人问,"我循环去点击一列链接,但是只能点到第一个,第二个就失败了,为什么?".原因就在这里:你点击第二个时已经是新…
selenium 对文本框的输入操作一般有两种形式,传统的是直接通过定位元素通过sendKeys()方法直接在文本框中输入信息.但有时候我们可以通过id 的方式将其进行定位,但却不能通过sendKeys()向文本框中输入文本信息. 这种情况下,也需要借助JavaScript 代码完成输入. HTML代码 <textarea id="id" style="width: 98%" cols="50" rows="5" cla…
有时候循环点击一列链接,只能点到第一个,第二个就失败了 原因是第二个已经是新页面,当然找不到之前页面的元素.就算是后退回来的,页面也是不一样的 页面长的一样不一定是同一张页面,就像两个人长的一样不一定是同一个人,他们的身份证号不同,页面,甚至页面上的元素都是有自己的身份证号(id)的 from selenium import webdriver driver = webdriver.Chrome() driver.get('http://www.baidu.com') print(driver.…
报错信息:selenium.common.exceptions.InvalidSelectorException: Message: invalid selector: Compound class names not permitted 解决方法:使用其它的定位方法,这个问题是由于定位的classname名称不规范导致…
抓取网页代码后,由于是在同一个li标签下,所以使用一次性抓取,所有的a标签,然后循环做不同的操作,但是抛出找不到元素异常. def office_page(_chrome: Chrome): sn = '官网首页' _xpath = '//li[@class="scNav_Item"]/a' sc_nav_list = _chrome.driver.find_elements_by_xpath('//li[@class="scNav_Item"]/a') print…
解决selenium.common.exceptions.InvalidArgumentException: Message: invalid argument: invalid 'expiry'   浏览器添加cookies with open('cookies', 'r', encoding='utf-8') as f: list_cookies = json.loads(f.readline()) print(list_cookies) # cookie = [item["name&quo…
一,报错的现象: 1,提示信息: jenkins.plugins.publish_over.BapPublisherException: Failed to add SSH key. Message [invalid privatekey: [B@60373f7] 如图: 2,系统环境: fedora 30 [root@localhost ~]# more /etc/redhat-release Fedora release 30 (Thirty) 内核 : [root@localhost ~]…
# 标题list_title = driver.find_elements_by_xpath('//*[@id="share-content"]/div/div[1]/ul/li/h3/a')print(list_title)# 用selenium + xpath 抓取网页数据,上述代码返回的是列表类型,打印出来是:[<selenium.webdriver.remote.webelement.WebElement (session="35b2fa1b1832c956eb…