forked from luyishisi/Anti-Anti-Spider
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
62 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# !/usr/bin/python | ||
# -*- coding: utf-8 -*- | ||
|
||
from selenium import webdriver | ||
browser = webdriver.Chrome() | ||
|
||
url = "https://www.baidu.com/" | ||
browser.get(url) | ||
# 通过js新打开一个窗口 | ||
newwindow='window.open("https://www.baidu.com");' | ||
# 删除原来的cookie | ||
browser.delete_all_cookies() | ||
# 携带cookie打开 | ||
browser.add_cookie({'name':'ABC','value':'DEF'}) | ||
# 通过js新打开一个窗口 | ||
browser.execute_script(newwindow) | ||
input("查看效果") | ||
browser.quit() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# !/usr/bin/python | ||
# -*- coding: utf-8 -*- | ||
|
||
from selenium import webdriver | ||
# 进入浏览器设置 | ||
options = webdriver.ChromeOptions() | ||
# 设置中文 | ||
options.add_argument('lang=zh_CN.UTF-8') | ||
# 更换头部 | ||
options.add_argument('user-agent="Mozilla/5.0 (iPod; U; CPU iPhone OS 2_1 like Mac OS X; ja-jp) AppleWebKit/525.18.1 (KHTML, like Gecko) Version/3.1.1 Mobile/5F137 Safari/525.20"') | ||
browser = webdriver.Chrome(chrome_options=options) | ||
url = "https://httpbin.org/get?show_env=1" | ||
browser.get(url) | ||
browser.quit() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
from selenium import webdriver | ||
|
||
options = webdriver.ChromeOptions() | ||
prefs = { | ||
'profile.default_content_setting_values': { | ||
'images': 2 | ||
} | ||
} | ||
options.add_experimental_option('prefs', prefs) | ||
browser = webdriver.Chrome(chrome_options=options) | ||
|
||
# browser = webdriver.Chrome() | ||
url = "http://image.baidu.com/" | ||
browser.get(url) | ||
input("是否有图") | ||
browser.quit() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# !/usr/bin/python | ||
# -*- coding: utf-8 -*- | ||
|
||
from selenium import webdriver | ||
from selenium.webdriver.common.desired_capabilities import DesiredCapabilities | ||
|
||
dcap = dict(DesiredCapabilities.PHANTOMJS) | ||
dcap["phantomjs.page.settings.userAgent"] = ( | ||
"Mozilla/5.0 (Linux; Android 5.1.1; Nexus 6 Build/LYZ28E) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.23 Mobile Safari/537.36" | ||
) | ||
driver = webdriver.PhantomJS(desired_capabilities=dcap) | ||
driver.get("https://httpbin.org/get?show_env=1") | ||
driver.get_screenshot_as_file('01.png') | ||
driver.quit() |