Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to realize Python programming and use Selenium to simulate Taobao login

2025-04-05 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/03 Report--

This article mainly introduces "how to achieve Python programming using Selenium to simulate Taobao login". In daily operation, I believe many people have doubts about how to achieve Python programming using Selenium to simulate Taobao login. Xiaobian consulted all kinds of materials and sorted out simple and easy-to-use operation methods. I hope it will be helpful to answer the doubts of "how to achieve Python programming using Selenium to simulate Taobao login". Next, please follow the editor to study!

Catalogue

First, using xpath to carry out (full use)

Second, the code part and the picture content

First, use xpath for (full use) driver.find_element_by_xpath () 2. Code part and picture content

Open the Taobao website, click to log in, enter the account password, enter the website, enter the computer in the search box, and then click search

# Import seleniumfrom selenium import webdriver # Import waiting time import time# access using Firefox driver = webdriver.Firefox () # visit Taobao website driver.get ("http://www.taobao.com")# Click login button driver.find_element_by_xpath (" html/body/div [4] / div [2] / div [1] / div/div [2] / div [1] / a [1] "). Click () # Jump page handles = driver.window_handlesprint (handles) # form tb = driver.find_element_by_tag_name ("iframe") driver.switch_to.frame (tb) # window entered through the handle of the window driver.switch_to.window (handles [1]) # Click the account to enter driver.find_element_by_xpath (". / * [@ id='fm-login-id']") .send_keys ("account" ") # Click the password to enter driver.find_element_by_xpath (". / / * [@ id='fm-login-password'] ") .send_keys (" password ") # Click the login button driver.find_element_by_xpath (". / / * [@ id='login-form'] / div [4] / button "). Click () # time to scan the login driver.implicitly_wait (15) # Click the search box Search the computer driver.find_element_by_xpath (". / / * [@ id='q']") .send_keys ("computer") # Click the search button driver.find_element_by_xpath (". / / * [@ id='J_TSearchForm'] / div [1] / button") .click ()

After searching, select goods, select Huawei, then choose high-definition games, and finally choose 512G

# filter products # Select "Huawei" driver.find_element_by_xpath (". / * [@ id='J_NavCommonRowItems_0'] / a [8] / span [2]"). Click () # wait 1 second time.sleep (1) # filter "HD game" driver.find_element_by_xpath (". / * [@ id='J_NavCommonRowItems_0'] / a [7] / span [2]") .click () # wait 1 second time.sleep (1) # filter "512G" driver.find_element_by_xpath (". / / * [@ id='J_NavCommonRowItems_0'] / a [1] / span [2]") .click () # wait 1 second time.sleep (1) # Select the first selected item Add shopping cart, etc.

Then select the product and go to the details page

# Select product driver.find_element_by_xpath (". / / * [@ id='mainsrp-itemlist'] / div/div/div [1] / div [1]") .click () # wait 3 seconds time.sleep (2)

After entering the details page, select the memory, select the color category, and finally add the shopping cart

# Select memory driver.find_elements_by_xpath (". / / * [@ id='J_isku'] / div/dl [1] / dd/ul/li [1] / a/span"). Click () # wait 1 second time.sleep (1) # Select color size driver.find_element_by_xpath (". / / * [@ id='J_isku'] / div/dl [3] / dd/ul/li [5] / a/span") ). Click () # wait 1 second for time.sleep (1) # to enter the product details page Click to join the shopping cart driver.find_element_by_xpath (". / / * [@ id='J_juValid'] / div [2] / a") .click () # wait 1 second time.sleep (1)

After joining the shopping cart, we choose to go to the shopping cart settlement, and finally to the shopping cart settlement interface

1 、

# finally, enter the shopping cart for settlement driver.find_element_by_xpath (". / / * [@ id='J_ResultSummary'] / div [4] / a [2]") .click ()

2 、

3. Save the picture results

# Save picture driver.get_screenshot_as_png () so far, the study on "how to realize Python programming using Selenium to simulate Taobao login" is over. I hope to be able to solve your doubts. The collocation of theory and practice can better help you learn, go and try it! If you want to continue to learn more related knowledge, please continue to follow the website, the editor will continue to work hard to bring you more practical articles!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report