簡體   English   中英

如何使用 python 在 Webbot 中獲得 0 美元的價值

[英]How to get $0 value in Webbot using python

請找到下面的代碼,我試圖在網站中獲取賣方收益價值,但它有 0 美元,當我在控制台中嘗試 $0.value 時得到598.08 ,但當我嘗試使用這個sel_proc = web.find_elements(id="afn-seller-proceeds")[0].text ''' 完整代碼:

import pandas as pd
from webbot import Browser
from bs4 import BeautifulSoup
web = Browser()
##web.set_window_position(-10000,0)
df = pd.read_excel('sample.xlsx')

soafees = []
fulfees = []
selproc = []
for ind in df.index:
    web.go_to('https://somelink')
##    web.set_window_position(-10000,0)
    web.click(id='link_continue')
    print("Login Successful")
    asin = df['ASIN'][ind]
    sp = int(df['Selling Price'][ind])
    print(sp)
    cp = int(df['Cost of Product'][ind])
    print(cp)
    web.type(df['ASIN'][ind] , into = 'Enter your product name, UPC, EAN, ISBN or ASIN',clear = True)
    web.click(id='a-autoid-0')
    web.type(sp,tag='input',id='afn-pricing',clear = True)
    web.type(cp,tag='input',id='afn-cost-of-goods',clear = True)
    web.click(id='update-fees-link')
    res = web.find_elements(id="afn-selling-fees")[0].text
    ful_fees = web.find_elements(id="afn-amazon-fulfillment-fees")[0].text
    sel_proc = web.find_elements(id="afn-seller-proceeds")[0].text
##    sel_proc = web.execute_script('return arguments[0].value;', element);
    print("soa fees : "+res)
    print("Fulfillment fees : "+ful_fees)
    print("Seller Proceeds : "+sel_proc)
    soafees.append(res)
    fulfees.append(ful_fees)
    selproc.append(sel_proc)
print(soafees)
print(fulfees)
print(selproc)
df_soa = pd.DataFrame(soafees,columns = ['SOA Fees'])
df_ful = pd.DataFrame(fulfees,columns = ['FBA Fees'])
df_sel = pd.DataFrame(selproc,columns = ['Seller Proceeds'])
print(df)
print(df_soa)
print(df_ful)
print(df_sel)

快照供參考: 在此處輸入圖像描述

預先感謝您的支持

在 sel_proc 變量中,您正在存儲文本,相反,您應該查找具有該值的屬性。 我相信,在這種情況下,它應該是一個“價值”屬性。

sel_proc = web.find_elements(id="afn-seller-proceeds")[0].get_attribute(<attribute_name>)

您的代碼將如下所示:

sel_proc = web.find_elements(id="afn-seller-proceeds")[0].get_attribute("value")

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM