• 大小: 0.14M
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-01-30
  • 语言: Python
  • 标签: 模拟  百度  python  

资源简介


资源截图

代码片段和文件信息

#!/usr/bin/env python
# -*- coding:utf-8 -*-

from selenium import webdriver
from selenium.webdriver.common.proxy import Proxy ProxyType


options = webdriver.ChromeOptions()

# tell selenium to use the dev channel version of chrome
# NOTE: only do this if you have a good reason to
# options.binary_location = ‘/usr/bin/google-chrome-unstable‘  # path to google Chrome bin

options.add_argument(‘headless‘)

# set the window size
options.add_argument(‘window-size=1200x600‘)

# with proxy
proxy_url = ‘ip:port‘
proxy = Proxy({
    ‘proxyType‘: ProxyType.MANUAL
    ‘httpProxy‘: proxy_url
    ‘sslProxy‘: proxy_url  # 需要信任代理服务器CA证书
})

desired_capabilities = options.to_capabilities()
proxy.add_to_capabilities(desired_capabilities)

# initialize the driver
# driver 

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件       34821  2018-06-09 09:31  baidu_index.png
     文件       17493  2018-06-09 09:31  baidu_main-page.png
     文件      105231  2018-06-09 09:31  search-result.png
     文件        1743  2018-06-09 09:31  PythonApplication1.py

评论

共有 条评论