在写appium的时候介绍了等待时间,其实selenium这里也是一样的,分别是强制等待,隐式等待,显示等待。详情见:appium 等待时间 强制等待 看到名称就应该知道,强制等待,就是设置多少秒,就必须等待多少秒,才能继续往下面操作 time.sleep() def sleep(seconds): ...
分类:
其他好文 时间:
2020-08-03 19:57:42
阅读次数:
103
前言 在完成爬虫任务的时候,我们总是会遇到用户账号登陆的问题,如果自己手动登陆的话,那么工作量就很大了,如何解决登陆问题呢? 今天老师带领大家使用selenium完成淘宝账号登陆 本篇文章知识点: selenium自动化测试框架的基本使用 通过xpath寻找相应组件并自动化操作 环境介绍: pyth ...
分类:
编程语言 时间:
2020-08-01 21:30:27
阅读次数:
104
爬虫介绍 # 介绍爬虫 2 urilib3(内置,不好用),requests--模拟发送http请求 3 Beautifulsoup解析,xpth解析 4 selenium模块,操作浏览器 5 Mongodb 6 反爬:代理池,cookie池,请求头中:user-agent,refer,js逆向 7 ...
分类:
其他好文 时间:
2020-07-31 21:46:31
阅读次数:
87
首先下载驱动 https://developer.microsoft.com/en-us/microsoft-edge/tools/webdriver/ 然后解压,把解压后的文件夹添加进环境变量path 然后安装两个包: pip install msedge-selenium-tools selen ...
分类:
编程语言 时间:
2020-07-30 16:51:31
阅读次数:
112
from selenium import webdriver options = webdriver.ChromeOptions() options.add_argument("--auto-open-devtools-for-tabs") driver = webdriver.Chrome(chr ...
分类:
编程语言 时间:
2020-07-30 14:26:27
阅读次数:
110
from selenium import webdriver mobileEmulation = {'deviceName' :'Galaxy S5'} option = webdriver.ChromeOptions() option.add_experimental_option('mobile ...
分类:
移动开发 时间:
2020-07-30 14:25:16
阅读次数:
98
1 # #!/usr/bin/python3 2 # -*- coding: utf-8 -*- 3 # @Time : 2020/7/30 9:07 4 # @Author : Gengwu 5 # @FileName: Keys_Option.py 6 # @Software: PyCharm ...
分类:
编程语言 时间:
2020-07-30 10:48:30
阅读次数:
124
from selenium import webdriver import time driver=webdriver.Chrome() driver.get("http://www.baidu.com/") #截屏 time.sleep(3) #获取网页源代码 a=driver.page_sour ...
分类:
Web程序 时间:
2020-07-30 01:25:41
阅读次数:
89
from selenium import webdriver import time driver=webdriver.Chrome() driver.get("http://www.douban.com/") time.sleep(2) driver.execute_script('window. ...
分类:
Web程序 时间:
2020-07-30 01:21:31
阅读次数:
95
from selenium import webdriver import time driver=webdriver.Chrome() driver.get("http://www.douban.com/") driver.find_element_by_xpath('//*[@id="anony ...
分类:
Web程序 时间:
2020-07-30 01:19:09
阅读次数:
86