S
S
san_m_m2022-01-12 10:00:36
Python
san_m_m, 2022-01-12 10:00:36

How to parse this page?

Good afternoon!

You need to take the name of the customer from the card on the website ( https://market.rts-tender.ru/zapros/3120375 ).

for this I want to use Selenium.

from selenium import webdriver
from selenium.webdriver.common.keys import Keys
import pandas as pd
from selenium.webdriver.common.by import By
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC
import time
from tqdm.auto import tqdm

driver = webdriver.Chrome(executable_path='D:\chromedriver.exe')
driver.get('https://market.rts-tender.ru/zapros/3120375')
time.sleep(4)
button = driver.find_element_by_class_name("btn.ng-star-inserted").click()


At the moment when you need to log in, a window pops up that blocks all further actions.
Is it possible to somehow solve this problem? Closing it or doing something else?

Answer the question

In order to leave comments, you need to log in

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question