上一页 1 ··· 159 160 161 162 163 164 165 166 167 ··· 204 下一页
摘要: import time picture_time = time.strftime("%Y-%m-%d-%H-%M-%S", time.localtime(time.time())) print(picture_time) # 2020-02-15-19-18-38 # picture_time2 = 阅读全文
posted @ 2020-02-15 19:29 小白龙白龙马 阅读(199) 评论(0) 推荐(0) 编辑
摘要: from selenium import webdriver driver.get_screenshot_as_file(filename): 截取当前窗口。只会截图当前程序可见区域内的内容,浏览器框架不会截图 driver.save_screenshot('000.png') #此处会在当前程序目 阅读全文
posted @ 2020-02-15 19:27 小白龙白龙马 阅读(238) 评论(0) 推荐(0) 编辑
摘要: from selenium import webdriver driver.current_window_handle #获取当前窗口句柄 driver.window_handles # 用于获取所有窗口句柄 suoyou = driver.window_handles # 用于获取所有窗口句柄dr 阅读全文
posted @ 2020-02-15 19:13 小白龙白龙马 阅读(1079) 评论(0) 推荐(0) 编辑
摘要: from selenium import webdriver driver = webdriver.Firefox() # 指定浏览器驱动 #对象实例化 url1='https://www.baidu.com' #需要打开的网址driver.get(url1) #driver.get("https: 阅读全文
posted @ 2020-02-15 19:02 小白龙白龙马 阅读(645) 评论(0) 推荐(0) 编辑
摘要: 导入和环境相匹配的包:http://archive.apache.org/dist/poi/release/bin/ package q; import java.io.File; import java.io.FileInputStream; import java.io.IOException; 阅读全文
posted @ 2020-02-14 03:22 小白龙白龙马 阅读(478) 评论(0) 推荐(0) 编辑
摘要: IE浏览器 import org.openqa.selenium.ie.InternetExplorerDriver; System.setProperty("webdriver.ie.driver","D:\\IEDriverServer.exe"); driver = new InternetE 阅读全文
posted @ 2020-02-12 00:41 小白龙白龙马 阅读(199) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2020-02-11 23:41 小白龙白龙马 阅读(198) 评论(0) 推荐(0) 编辑
摘要: package rjcs; import java.io.File; import java.text.DateFormat; import java.text.SimpleDateFormat; import java.util.Date; import org.openqa.selenium.B 阅读全文
posted @ 2020-02-11 23:28 小白龙白龙马 阅读(370) 评论(0) 推荐(0) 编辑
摘要: package rjcs; import java.io.File; import java.text.DateFormat; import java.text.SimpleDateFormat; import java.util.Date; import org.openqa.selenium.B 阅读全文
posted @ 2020-02-11 21:05 小白龙白龙马 阅读(279) 评论(0) 推荐(0) 编辑
摘要: package rjcs; import java.text.DateFormat; import java.text.SimpleDateFormat; import java.util.*; import java.awt.*; import java.awt.datatransfer.Stri 阅读全文
posted @ 2020-02-11 20:48 小白龙白龙马 阅读(183) 评论(0) 推荐(0) 编辑
上一页 1 ··· 159 160 161 162 163 164 165 166 167 ··· 204 下一页