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
5 changed files
with
164 additions
and
0 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
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,164 @@ | ||
#!/usr/bin/env python | ||
# -*- coding: UTF-8 -*- | ||
#------------------------------------------------------------------------- | ||
# 程序:taobao_login.py | ||
# 版本:0.1 | ||
# 作者:ly | ||
# 日期:编写日期2016/11/23 | ||
# 语言:Python 2.7.x | ||
# 操作:python selenuium.py | ||
# 功能: 淘宝页面登录 | ||
#------------------------------------------------------------------------- | ||
|
||
from selenium import webdriver | ||
from selenium.webdriver.common.keys import Keys | ||
import time,sys | ||
from selenium.webdriver.common.desired_capabilities import DesiredCapabilities | ||
from selenium.webdriver.common.action_chains import ActionChains | ||
|
||
# 中文编码设置 | ||
reload(sys) | ||
sys.setdefaultencoding('utf-8') | ||
Type = sys.getfilesystemencoding() | ||
|
||
#加载内核 | ||
|
||
def main(): | ||
print 'begin',time.ctime() | ||
driver = webdriver.Chrome() | ||
url = 'https://login.taobao.com/member/login.jhtml?redirectURL=https%3A%2F%2Fwww.taobao.com%2F' | ||
#url_jiyan = 'http://www.geetest.com/exp_embed' | ||
driver.get(url) | ||
|
||
time.sleep(20) | ||
url_1 = 'https://item.taobao.com/item.htm?spm=a219r.lm874.14.1.ds0jfh&id=544500071746&ns=1&abbucket=14' | ||
driver.get(url_1) | ||
|
||
# driver.find_element_by_id('J_Quick2Static').click()#点击进入密码区域 | ||
# time.sleep(1) | ||
# elem = driver.find_element_by_xpath('//*[@id="TPL_username_1"]') | ||
# time.sleep(1) | ||
# elem.send_keys("") | ||
# time.sleep(1) | ||
# elem = driver.find_element_by_xpath('//*[@id="TPL_password_1"]') | ||
# elem.send_keys("") | ||
# #nc_iconfont btn_slide J_Static2Quick | ||
#driver.find_element_by_id('J_SubmitStatic').click() | ||
|
||
# elem = driver.find_element_by_xpath('//*[@id="TPL_password_1"]') | ||
# elem.send_keys("l") | ||
# try: | ||
# begin = driver.find_element_by_xpath('//span[@class="nc_iconfont btn_slide"]') | ||
# time.sleep(1) | ||
# print '1' | ||
# end = driver.find_element_by_xpath('//i[@id="J_Static2Quick"]') | ||
# time.sleep(1) | ||
# print '2' | ||
# ActionChains(driver).drag_and_drop(begin,end).perform() | ||
# time.sleep(1) | ||
# print '3' | ||
# driver.find_element_by_id('J_SubmitStatic').click() | ||
# print '4' | ||
# except: | ||
# print '0' | ||
# driver.find_element_by_id('J_SubmitStatic').click() | ||
# #being.click() | ||
# # driver.find_element_by_id('J_Quick2Static').click()#点击进入密码区域 | ||
#time.sleep(1) | ||
|
||
#time.sleep(1) | ||
name = 'temp.png' | ||
driver.save_screenshot(name) | ||
|
||
#处理滑块拖动问题 | ||
#id= nc_1_n1z | ||
#ActionChains | ||
|
||
|
||
time.sleep(500) | ||
|
||
name = 'temp1.png' | ||
driver.save_screenshot(name) | ||
|
||
|
||
|
||
print 'end',time.ctime() | ||
#driver.quit() | ||
#driver.close() | ||
|
||
|
||
if __name__ == '__main__': | ||
main() | ||
|
||
|
||
#driver = webdriver.Chrome() | ||
# 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) | ||
#发起请求≈ | ||
# for i in range(20): | ||
# #id = 31780000-i | ||
# id = 3000029+i | ||
# now_url = 'http://invest.ppdai.com/loan/info?id='+str(id) | ||
# driver.get(now_url) | ||
# | ||
# js1 = 'return document.body.scrollHeight' | ||
# #js2 = 'window.scrollTo(0, document.body.scrollHeight)' | ||
# old_scroll_height = 0 | ||
# num = 300 | ||
# max_num = driver.execute_script(js1) | ||
# add_num = max_num / 20 | ||
# while(max_num > num ): | ||
# num += add_num | ||
# js2 = 'window.scrollTo(0, '+str(num)+')' | ||
# driver.execute_script(js2) | ||
# time.sleep(0.2) | ||
# max_num = driver.execute_script(js1) | ||
# #add_num = max_num / 20 | ||
# print num,'/',max_num | ||
# time.sleep(4)#主要等待时间延迟可设置 | ||
# | ||
# name = str(id)+'.png' | ||
# driver.save_screenshot(name) | ||
# print name | ||
|
||
#获取用户名框并输入 | ||
# elem = driver.find_element_by_xpath('//*[@id="email"]') | ||
# elem.send_keys("****") | ||
|
||
#获取密码框并输入 | ||
# elem = driver.find_element_by_xpath('//*[@id="password"]') | ||
# elem.send_keys("****") | ||
|
||
#通过回车键进行登录 | ||
#elem.send_keys(Keys.RETURN) | ||
|
||
# 通过id选择到登录键 | ||
# driver.find_element_by_id('submit-button').click() | ||
|
||
|
||
# time.sleep(2) | ||
|
||
#保存页面截图和源码 | ||
#name = '~/so_img/'+time.ctime().replace(' ','-')+'.png' | ||
# name = time.ctime().replace(' ','-')+'.png' | ||
#name_html = "~/so_img/"+time.ctime().replace(' ','-')+'.html' | ||
|
||
# driver.save_screenshot(name) | ||
#f = open(name_html.encode('utf-8'),'w') | ||
#f.write(driver.page_source) | ||
#f.close() | ||
|
||
#print driver.page_source | ||
|
||
# time.sleep(5) | ||
|
||
# print 'end',time.ctime() | ||
#driver.quit() | ||
#elem.clear() | ||
#time.sleep(10) | ||
#driver.close() |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.