
python
Sily_Z
这个作者很懒,什么都没留下…
展开
-
pip 安装相关国内源
pip国内源原创 2023-02-28 21:04:09 · 551 阅读 · 0 评论 -
python 传入oracle数据库时中文乱码问题
我是通过postman转换为python代码的情况,然后传入中文时,不是报错就是乱码中文名后加上这些,在传入时,就不会报错和乱码了原创 2022-06-11 15:19:12 · 413 阅读 · 0 评论 -
The Zen of Python
>>> import thisThe Zen of Python , by Tim PeterBeautiful is better than ugly.Explicit is better than implicit.Simple is better than complex.Complex is better than complicated.Flat is ...翻译 2018-07-30 14:56:38 · 986 阅读 · 1 评论 -
selenium---鼠标悬浮到指定元素上方,并点击出现的对应元素信息的操作------python
以百度首页为例,打开首页,右上角的设置中有一个高级搜索,需要鼠标悬浮才可以出现,所以在python中可以这么做:import timefrom selenium.webdriver import ActionChainsActionChains(self.driver).move_to_element(self.driver.find_element_by_link_t...原创 2018-09-12 16:27:40 · 20761 阅读 · 8 评论 -
uiautomator查找元素的方式。
uiautomator查找元素的方式。####### resourceId 方式driver.find_element_by_android_uiautomator('new UiSelector().resourceId("%s")')####### text 方式driver.find_element_by_android_uiautomator('new UiSele...原创 2018-10-09 13:54:29 · 4193 阅读 · 0 评论