
编程语言
junior1206
一个it界不及格的二哈
展开
-
selenium 实现自动每小时截图外加保存,并通过本地微信发送给指定人(no wechat)
import timeimport datetimefrom apscheduler.schedulers.blocking import BlockingScheduler#from apscheduler.schedulers.background import BackgroundSchedulerfrom selenium import webdriverimport win32apiimport win32guiimport win32conimport win32clipboar原创 2021-08-05 11:49:39 · 733 阅读 · 0 评论 -
git仓库的迁移(全部分支)
git仓库的迁移(全部分支)_UrasakiNakajima的博客-优快云博客转载 2022-01-27 15:06:09 · 1026 阅读 · 0 评论 -
selenium.common.exceptions.NoSuchElementException: 报错
NoSuchElementException: Message: Unable to locate element 疑惑我用的是xpath 进行定位的为什么报错定位不到元素 1.可能元素加载未完成 implicitly_wait():隐式等待 当使用了隐士等待执行测试的时候,如果 WebDriver没有在 DOM中找到元素,将继续等待,超出设定时间后则抛出找不到元素的异常...原创 2019-02-20 09:47:22 · 28287 阅读 · 0 评论 -
二、selenium WebDriver元素定位方式以及通过谷歌Google 火狐Firefox 定位xpath 和css
定位方式:idnameclass nametag namelink textpartial link textxpathcss selector1. id定位:find_element_by_id("id值");id属性是唯一的from selenium import webdriverdriver =webdriver.Chrome()driver...原创 2019-02-20 10:25:37 · 1369 阅读 · 0 评论