
爬虫
zoQ
取次花丛懒回顾,半缘修道半缘君。
展开
-
Selenium,ChromeDriver之Chrome浏览器设置,打印控制台日志(Network,console等)-番外篇
一、Chrome信息检测,chrome://chrome-urls/chrome地址栏中输入 chrome://chrome-urls/详情如下检查版本信息,浏览器基本信息chrome://version/二、Chrome启动参数参考地址https://peter.sh/experiments/chromium-command-line-switches/一...原创 2018-05-25 19:55:53 · 17206 阅读 · 1 评论 -
布隆过滤器
计算公式1.内容空间bit,bit数组大小:2.哈希函数个数:3.误判率:来源:http://www.cnblogs.com/allensun/archive/2011/02/16/1956532.html转载 2018-05-26 12:46:03 · 145 阅读 · 0 评论 -
初识Selenuim
一、Selenium是什么,能干什么Selenium是自动化浏览器工具,通过Selenium可以自动化运行浏览器Selenium能够用来自动化测试程序,能够用来自动化获取网页信息。二、Selenium包含哪些模块1.Selenium WebDriver,可以在驱动本地和远程web浏览器2.Selenium IDE,firefox和chrome上的插件,能够录制操作路径3.Selenium Remo...原创 2018-05-23 20:17:32 · 302 阅读 · 0 评论 -
Selenium,基础环境搭建
一、Maven包依赖关系图 二、导入Selenium包(高版本包里面已经包含了各平台驱动,如图) <!-- https://mvnrepository.com/artifact/org.seleniumhq.selenium/selenium-java --> <dependency> <grou...原创 2018-05-24 18:11:13 · 278 阅读 · 0 评论 -
Selenium-WebDriver
org.openqa.selenium.WebDriver 接口常用api//打开一个链接void get(String var1);//跳转桃下一个窗口WebDriver.TargetLocator switchTo();//驱动器管理,主要包括当前窗口最大化,请求是否超时控制,得到cookies或清楚cookies等WebDriver.Options manage();//窗口句柄...原创 2018-06-07 19:01:40 · 405 阅读 · 0 评论 -
Selenium 纵向滚动条控制、Selenuim js赋值问题
Selenium 纵向滚动条控制页面异步加载时,为了获取由浏览器滚动条触底加载新的内容时,需要用到webdriver来控制滚动条。第一种方式:直接控制滚动条跳转到具体位置 @Test public void scrollBarPositionTest() { webDriver.get("https://www.taobao.com/"); ...原创 2018-08-20 18:21:06 · 356 阅读 · 0 评论 -
selenium unable to set cookie,selenium 截图
selenium unable to set cookie问题在webDriver中,在一个webDriver登录后,相应的cookies是通过登录操作被保存到一个webDriver中,运行其他webDriver时,又需要做登录操作,如果实现只登陆一次,然后共享cookies岂不是很好。当尝试添加cookies时抛出selenium unable to set cookie错误,大多情况是...原创 2018-08-20 18:30:20 · 6598 阅读 · 1 评论