Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Selenium + Aliexpress
#1
Python 3.8
I need to parse the product listing page from Aliexpress. The page has endless scrolling, so BeautifulSoup, if I understand correctly, will not work. I use Selenium, but it loads a page with a description of the goods in English and prices in dollars, and the list of goods is not the same as in Ali in Russian. The interface is in Russian.
How to make Selenium upload a list of goods with a Russian description in rubles?

....
URL = 'https://flashdeals.aliexpress.com/ru.htm'
browser = webdriver.Chrome()
browser.get(URL)
html = browser.page_source
print(html)
....
Reply


Messages In This Thread
Selenium + Aliexpress - by alexkorn - Jun-09-2020, 06:46 AM
RE: Selenium + Aliexpress - by Knight18 - Jun-09-2020, 07:17 AM
RE: Selenium + Aliexpress - by alexkorn - Jun-09-2020, 07:49 AM
RE: Selenium + Aliexpress - by alexkorn - Jun-09-2020, 04:48 PM
RE: Selenium + Aliexpress - by snippsat - Jun-09-2020, 05:48 PM
RE: Selenium + Aliexpress - by alexkorn - Jun-09-2020, 06:43 PM
RE: Selenium + Aliexpress - by snippsat - Jun-09-2020, 06:50 PM
RE: Selenium + Aliexpress - by alexkorn - Jun-09-2020, 07:02 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Error in Selenium: CRITICAL:root:Selenium module is not installed...Exiting program. AcszE 1 3,734 Nov-03-2017, 08:41 PM
Last Post: metulburr

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020