随笔分类 -  selenium

摘要:解压后,把路径放到系统环境变量中即可 阅读全文
posted @ 2019-02-09 18:12 anobscureretreat 阅读(163) 评论(0) 推荐(0)
摘要:官网:https://developers.google.cn/web/updates/2017/04/headless-chrome 阅读全文
posted @ 2018-10-17 10:22 anobscureretreat 阅读(262) 评论(0) 推荐(0)
摘要:from selenium import webdriver import time fireFoxOptions = webdriver.FirefoxOptions() fireFoxOptions.set_headless() driver = webdriver.Firefox(firefox_options=fireFoxOptions) driver.get('https... 阅读全文
posted @ 2018-10-17 10:21 anobscureretreat 阅读(529) 评论(0) 推荐(0)
摘要:#include <File.au3> #include <MsgBoxConstants.au3> MsgBox($MB_SYSTEMMODAL, "", @ScriptDir & @CRLF) ;信息框输出文件运行目录并附带回车 阅读全文
posted @ 2016-08-30 21:05 anobscureretreat 阅读(1094) 评论(0) 推荐(0)
摘要:#include <MsgBoxConstants.au3> Local $aDays = StringSplit("Mon,Tues,Wed,Thur,Fri,Sat,Sun", ",") ;用逗号作为分隔符,分割字符串,返回分割后的元素的数组 For $i = 1 To $aDays[0] ;循 阅读全文
posted @ 2016-08-30 20:59 anobscureretreat 阅读(1683) 评论(0) 推荐(0)