1.Ghelper的下载.解压(http://ghelper.xyz/) 2.在谷歌浏览器==>更多工具==>扩展程序==>加载已解压的扩展程序(添加刚才下载的Ghelper) 3.Ghelper按照注册流程,注册账号,登录 接下来就可以登录Google网站了 ...
分类:
其他好文 时间:
2020-05-29 12:12:45
阅读次数:
1625
js运行效率在提升 编程语言的效率是前提,js自然比不上native的C语言效率,所以Canvas效率无疑比不上原生的2D图形绘制,但是js效率的提升是有目共睹的,以js与as为例,基本操作(运算操作,集合操作,Map操作)已经超越ActionScript,尤其是Google Chrome浏览器与a ...
分类:
Web程序 时间:
2020-05-29 11:55:15
阅读次数:
75
1.首先你要安装selenium库啦 pip install selenium 2.selenium查找元素就八种方法 from selenium import webdriver driver=webdriver.Chrome() #说明find_elements_by 多了一个s,返回的就是一个 ...
分类:
其他好文 时间:
2020-05-28 21:41:12
阅读次数:
304
1、select select { /*Chrome和Firefox里面的边框是不一样的,所以复写了一下*/ border: none; outline: none; background: none; /*很关键:将默认的select选择框样式清除*/ appearance: none; -moz ...
分类:
其他好文 时间:
2020-05-28 16:24:01
阅读次数:
249
function getIPs(callback) { var ip_dups = {}; //compatibility for firefox and chrome var RTCPeerConnection = window.RTCPeerConnection || window.mozRTC ...
分类:
其他好文 时间:
2020-05-28 16:09:31
阅读次数:
131
内容参考Chrome官网https://sites.google.com/a/chromium.org/chromedriver/downloads chromedriver可在下面链接中下载到(官网链接): http://chromedriver.storage.googleapis.com/in ...
分类:
其他好文 时间:
2020-05-28 12:46:56
阅读次数:
246
Echarts学习 简介 :ECharts,一个使用 JavaScript 实现的开源可视化库,可以流畅的运行在 PC 和移动设备上,兼容当前绝大部分浏览器(IE8/9/10/11,Chrome,Firefox,Safari等),底层依赖矢量图形库 ZRender,提供直观,交互丰富,可高度个性化定 ...
分类:
其他好文 时间:
2020-05-28 01:14:46
阅读次数:
79
脚本用于在Chrome的Console内定时刷新网页 timeout=prompt("Set timeout (Second):"); count=0 current=location.href; if(timeout>0) setTimeout('reload()',1000*timeout); ...
分类:
Web程序 时间:
2020-05-27 18:35:28
阅读次数:
175
浏览器的常见User Agent 各字段的解释 浏览器的User Agent字段令人迷惑,例如:某一版本的Chrome访问网络时,User Agent字段如下: Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like G ...
分类:
Web程序 时间:
2020-05-27 18:20:44
阅读次数:
106