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