from selenium import webdriver from selenium.webdriver.common.action_chains import ActionChains from webdriver_manager.chrome import ChromeDriverManager import time class WykopBot(): def __init__(self): self.driver = webdriver.Chrome(ChromeDriverManager().install()) def login(self): self.driver.get('https://wykop.pl') login = input('Podaj login: ') haslo = input('Podaj haslo: ') bot = WykopBot() bot.login() bot.driver.maximize_window() wykop_login_btn = bot.driver.find_element_by_xpath('//*[@id="nav"]/div/ul[2]/li[4]/a') wykop_login_btn.click() wykop_login_input = bot.driver.find_element_by_xpath('//*[@id="newregister-login"]') wykop_login_input.click() wykop_login_input.send_keys(f'{login}') wykop_password_input = bot.driver.find_element_by_xpath('//*[@id="newregister-pass"]') wykop_password_input.click() wykop_password_input.send_keys(f'{haslo}') wykop_zalogujsie_btn = bot.driver.find_element_by_xpath('//*[@id="nav"]/div/ul[2]/li[4]/div/div/ul/li[1]/form/fieldset/p/input') wykop_zalogujsie_btn.click() while True: try: bot.driver.get(f'https://www.wykop.pl/ludzie/wpisy/{login}/{login}/') text = bot.driver.find_element_by_xpath('//*[@id="itemsStream"]/li[1]/div/div/div[2]') hover = ActionChains(bot.driver).move_to_element(text) hover.perform() time.sleep(1) usun = bot.driver.find_element_by_xpath('//*[@id="itemsStream"]/li[1]/div/div/div[3]/ul/li[3]/a') usun.click() bot.driver.switch_to.alert.accept() except Exception: pass