python[自動化]selenium初探實現自動登錄亞馬遜進行操作

来源:http://www.cnblogs.com/zhouxiaoming/archive/2017/06/29/7096135.html
-Advertisement-
Play Games

使用selenium及打碼平臺(自己還實現不了驗證碼圖片解析,對接打碼平臺解析圖片驗證碼)現實自動登錄亞馬遜網站,並修改賬號綁定郵箱及密碼等操作。 邏輯:模擬瀏覽器的操作,定位元素填入數據,根據頁面元素獲取屬性下載圖片驗證碼進行分析,自動填充驗證碼,實現自動化操作。 使用chrome瀏覽器,需要下載 ...


使用selenium及打碼平臺(自己還實現不了驗證碼圖片解析,對接打碼平臺解析圖片驗證碼)現實自動登錄亞馬遜網站,並修改賬號綁定郵箱及密碼等操作。

邏輯:模擬瀏覽器的操作,定位元素填入數據,根據頁面元素獲取屬性下載圖片驗證碼進行分析,自動填充驗證碼,實現自動化操作。

使用chrome瀏覽器,需要下載對應版本的webdriver  下載地址:https://chromedriver.storage.googleapis.com/index.html。

#coding=utf-8

from selenium import webdriver
from selenium.common.exceptions import NoSuchElementException
from selenium.webdriver.common.keys import Keys
from selenium.webdriver.support.ui import WebDriverWait
import time ,sys, requests, json

class Browser(object):
    def __init__(self,url):
        self.browser = webdriver.Chrome()
        self.browser.maximize_window()
        self.url = url
        self.browser.get(self.url)

    def get_element_by_id(self,element_id):        
        return self.browser.find_element_by_id(element_id)

    def get_element_by_class(self,_class):
        return self.browser.find_element_by_class_name(_class)

    def get_element_by_text(self,text):
        return self.browser.find_element_by_link_text(text)

    def get_screenshot(self,file):
        return self.browser.get_screenshot_as_file(file)
    
    def waitfor(self,element_id):
        return WebDriverWait(self.browser,10).until(lambda b:b.find_element_by_id(element_id).is_displayed())


def upload_code_check():
    url = 'http://api.yundama.net:5678/api.php?method=upload'
    print url
    data = {}
    data.update({'username':'xxxxx'})
    data.update({'password':'xxxxx'})
    data.update({'codetype':'5000'})
    data.update({'appid':'1'})
    data.update({'appkey':'22cc5376925e9387a23cf797cb9ba745'})
    data.update({'timeout':'60'})
    data.update({'version':'YAPI/WEB v1.0.0'})
    data.update({'showimage':'1'})
    files = {'file':('dd.jpg',open('C://dd.jpg','rb'),'image/jpeg')}
    res = requests.post(url,data=data,files=files)
    res_json = json.loads(res.content)
    print res.content
    return res_json 
    

def get_code_check_results(url1):
    while True:
        res1 = requests.get(url1)
        res1 = json.loads(res1.content)
        if res1['ret'] == 0:
            break
    return res1

def get_image(img_url):
    img = requests.get(img_url)
    img_f = open('C://dd.jpg','w+b')
    img_f.write(img.content)
    img_f.close()
    return img
              

def main():
    url = 'https://www.amazon.cn/'
    count = 'xxxxxxx'
    pwd = 'xxxxxxxx'
    pwd_new = 'xxxxxxx'
    #email_new = '[email protected]'
    email_new = '[email protected]'
    browser = Browser(url)
    if browser.waitfor('nav-link-yourAccount'):
        browser.get_element_by_id('nav-link-yourAccount').click()
    else:
        print 'connect timeout'
        sys.exit(1)

    if browser.waitfor('ap_email'):
        browser.get_element_by_id('ap_email').send_keys(count)
        browser.get_element_by_id('ap_password').send_keys(pwd)
        browser.get_element_by_id('signInSubmit').click()
        try:
            error = browser.get_element_by_id('auth-error-message-box')
            print 'login error'
        except Exception:
            pass
    else:
        print 'connect timeout'
        sys.exit(1)

    if browser.waitfor('nav-link-yourAccount'):
        browser.get_element_by_id('nav-link-yourAccount').click()
    else:
        print 'connect timeout'
        sys.exit(1)

    try:
        text = browser.get_element_by_text(u'登錄和安全設置')
        text.click()
        email = browser.get_element_by_id('auth-cnep-edit-email-button')
        email.click()
        if browser.waitfor('ap_email_new'):
            browser.get_element_by_id('ap_email_new').send_keys(email_new)
            browser.get_element_by_id('ap_email_new_check').send_keys(email_new)
            browser.get_element_by_id('ap_password').send_keys(pwd)            
            yanzhenma = browser.get_element_by_id('auth-captcha-image')
            img_url = yanzhenma.get_attribute('src')
            img_url = img_url.replace('&','&')
            print img_url
            img = get_image(img_url)
            res_json = upload_code_check()
           
            url1 = "http://api.yundama.net:5678/api.php?method=result&cid=" + str(res_json['cid'])
            print url1
            res1 = get_code_check_results(url1)
            print res1['text']
            yzm = res1['text']
            print yzm
            if yzm:
                browser.get_element_by_id('auth-captcha-guess').send_keys(str(yzm))
                browser.get_element_by_id('cnep_1B_submit_button').click()

            if browser.waitfor('auth-success-message-box'):
                browser.get_element_by_id('auth-cnep-edit-password-button').click()
                print 'success modify email'

            if browser.waitfor('ap_password_new_check'):
                browser.get_element_by_id('ap_password').send_keys(pwd)
                browser.get_element_by_id('ap_password_new').send_keys(pwd_new)
                browser.get_element_by_id('ap_password_new_check').send_keys(pwd_new)
                auth_img_url = browser.get_element_by_id('auth-captcha-image')
                img_url2 = auth_img_url.get_attribute('src').replace('&','&')
                img2 = get_image(img_url2)
                res_json = upload_code_check()
                url2 = "http://api.yundama.net:5678/api.php?method=result&cid=" + str(res_json['cid'])
                print url2
                res2 = get_code_check_results(url2)
                print res2['text']
                yzm2 = res2['text']
                print yzm2
                if yzm2:
                    browser.get_element_by_id('auth-captcha-guess').send_keys(str(yzm2))
                    browser.get_element_by_id('cnep_1D_submit_button').click()     
        
    except NoSuchElementException,e:
        print(e)

    


if __name__ == "__main__":
    main()
    
    
    

    
    

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 題目描述 設G為有n個頂點的有向無環圖,G中各頂點的編號為1到n,且當為G中的一條邊時有i < j。設w(i,j)為邊的長度,請設計演算法,計算圖G中<1,n>間的最長路徑。 輸入輸出格式 輸入格式: 輸入文件longest.in的第一行有兩個整數n和m,表示有n個頂點和m條邊,接下來m行中每行輸入3 ...
  • 時間限制: 1 s 空間限制: 128000 KB 題目等級 : 鑽石 Diamond 題解 查看運行結果 時間限制: 1 s 空間限制: 128000 KB 題目等級 : 鑽石 Diamond 時間限制: 1 s 空間限制: 128000 KB 題目等級 : 鑽石 Diamond 時間限制: 1 ...
  • 目錄 tarnado tarnado源碼安裝 tarnado測試程式 application類的解析 一. tarnado簡介 最近在學習Python,無意間接觸到的tarnado,感覺tarnado還蠻好的那麼tarnado到底什麼呢?tarnado是由Python開發的一個非阻塞式web伺服器框 ...
  • Python使用openpyxl讀寫excel文件 這是一個第三方庫,可以處理 格式的Excel文件。 安裝。如果使用Aanconda,應該自帶了。 讀取Excel文件 需要導入相關函數。 預設打開的文件為可讀寫,若有需要可以指定參數 為`True`。 獲取工作表 Sheet 獲取單元格 返回 , ...
  • 題目描述 Description You are a mouse that lives in a cage in a large laboratory. 你是一隻生活在籠子里的實驗室老鼠。 The laboratory is composed of one rectangular grid of s ...
  • John Doe, a skilled pilot, enjoys traveling. While on vacation, he rents a small plane and starts visiting beautiful places. To save money, John must ...
  • 一、函數 1、簡介 Shell函數類似於Shell腳本,裡面存放了一系列的指令 不過,Shell的函數存在於記憶體,而不是硬碟文件,所以速度很快 另外,Shell還能對函數進行預處理,所以函數的啟動比腳本更快 2、定義 function 函數名() { 語句 [return] } 關鍵字functio ...
  • 1、文本處理_2:grep,sed,awk 2、regular_expression 3、Test 一、文本處理_2 1、grep --Linux處理正則表達式的主要程式。正則表達式是一種符號表示法,用於識別文本模式 常用選項: -w --匹配單詞的邊界 -o --輸出匹配的那部分,而不是整行 -i ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...