随笔分类 - selenium
摘要:code driver.find_element_by_id('user_name').send_keys('abc') driver.find_element_by_id('user_pwd').send_keys('icloudeep123') driver.find_element_by_na
阅读全文
摘要:code1 import sys,os sys.path.append("/".join(os.path.dirname(os.path.abspath(__file__)).split("/")[:-1])+'/lib') from selenium import webdriver import
阅读全文
摘要:code import sys,os sys.path.append("/".join(os.path.dirname(os.path.abspath(__file__)).split("/")[:-1])+'/lib') from selenium import webdriver import
阅读全文
摘要:code import sys,os sys.path.append("/".join(os.path.dirname(os.path.abspath(__file__)).split("/")[:-1])+'/lib') from selenium import webdriver import
阅读全文
摘要:code import sys,os sys.path.append("/".join(os.path.dirname(os.path.abspath(__file__)).split("/")[:-1])+'/lib') from selenium import webdriver import
阅读全文
摘要:code from selenium.webdriver.common.action_chains import ActionChains from selenium import webdriver driver = webdriver.Chrome() asleep(driver) driver
阅读全文
摘要:code from selenium.webdriver.common.action_chains import ActionChains from selenium import webdriver driver = webdriver.Chrome() asleep(driver) driver
阅读全文
摘要:code import sys,os sys.path.append("/".join(os.path.dirname(os.path.abspath(__file__)).split("/")[:-1])+'/lib') from selenium import webdriver import
阅读全文
摘要:Squoosh 是谷歌推出的一款在线图像压缩工具,可帮助网站开发人员快速压缩图片,在保持图片质量的同时,提升网站访问速度。 Squoosh 使用起来也非常简单,在浏览器中打开页面后,可点击选择或直接往里面拖图片,在左下方可选择想要生成的图片格式,右下方选择图片质量,再下载即可。 本次使用的代码已经放
阅读全文
摘要:下载驱动后,解压 然后将可执行文件放在/usr/local/bin/下面 在命令输入chromedriver后出现以下内容,表示配置成功 macname@MacdeMacBook-Pro ui_web_automation % chromedriver Starting ChromeDriver 8
阅读全文
摘要:code b= ActionChains(driver) c= driver.find_element_by_xpath("元素名") b.click_and_hold(c).perform() for i in range(100): try: b.move_by_offset(15,0).per
阅读全文
摘要:https://www.chromedownloads.net/chrome64osx-stable/1003.html
阅读全文
摘要:#前进 driver.back() #后退 driver.forward() #刷新 driver.refresh() #退出 driver.quit() #获取所有 cookie cookies=driver.get_cookies() #删除所有 cookie 信息。 driver.delete_all_cookies() #获取cookie cookie=driver.ge...
阅读全文
摘要:chrome webdriver 下载 http://chromedriver.storage.googleapis.com/index.html?path=2.46/ or http://npm.taobao.org/mirrors/chromedriver/ 下载后把文件解压,然后放到本机chrome浏览器文件路径里 firefox webdriver https://github....
阅读全文
摘要:1、id定位: find_element_by_id() 从上面定位到的搜索框属性中,有个id="kw"的属性,我们可以通过这个id定位到这个搜索框 代码: 2、name定位: find_element_by_name() 从上面定位到的搜索框属性中,有个name="wd"的属性,我们可以通过这个n
阅读全文
摘要:无头浏览器即headless browser,是一种没有界面的浏览器。既然是浏览器那么浏览器该有的东西它都应该有,只是看不到界面而已。 Python中selenium模块中的PhantomJS即为无界面浏览器(无头浏览器):是基于QtWebkit的无头浏览器。 Python中selenium模块中的
阅读全文
摘要:PhantomJS 2.1.1将会是已知最后的稳定版本
阅读全文
摘要:from selenium import webdriver from selenium.webdriver.chrome.options import Options chrome_options = Options() chrome_options.add_argument('--headles
阅读全文
摘要:http://phantomjs.org/download.html
阅读全文
摘要:from selenium import webdriveroptions = webdriver.ChromeOptions()options.add_experimental_option("excludeSwitches",["ignore-certificate-errors"])drive
阅读全文