По сути, у меня есть веб-сайт, на котором мне нужно открыть несколько вкладок и что-то сделать в каждой из них. Как я могу сделать это, используя Python + Selenium и Chrome?
Вот код, который у меня есть:
from selenium import webdriver
import os
import time
import pyautogui
option = webdriver.ChromeOptions()
chrome_prefs = {}
option.experimental_options["prefs"] = chrome_prefs
chrome_prefs["profile.default_content_settings"] = {"images": 2}
chrome_prefs["profile.managed_default_content_settings"] = {"images": 2}
chrome_prefs["profile.default_content_settings"] = { "popups": 2 }
option.add_argument("--disable-notifications")
driver = webdriver.Chrome(chrome_options=option)
driver.get('https://www.spiritfanfiction.com/login')
driver.find_element_by_xpath("//*[@id='Usuario']").send_keys("breakfast")
driver.find_element_by_xpath("//*[@title='Senha']").send_keys("302290679")
driver.find_element_by_xpath("//*[@class='btn btn-primary']").send_keys("302290679")
driver.find_element_by_xpath("//*[@class='btn btn-primary']").click()
#this opens the page I need to get all the xpaths from
LinkDoPerfil = driver.get("https://www.spiritfanfiction.com/recentes?pagina=1000")
#this is the xpath I need to open in each tab
transactionElements = driver.find_elements_by_xpath("//*[@class='usuario usuarioPopupTrigger link']")
#this is the part I have no idea what I'm doing lol. But it was supposed to open all the xpaths in a different tab.
for element in transactionElements:
ActionChains(driver) \
.key_down(Keys.CONTROL) \
.click(element) \
.key_up(Keys.CONTROL) \
.perform()
#this switches to the latest opened tab, which is the final xpath I got from the page.
driver.switch_to_window(driver.window_handles[-1])
try:
driver.find_element_by_xpath('//*[@class="fa fa-eye"]').click()
except:
browser.find_element_by_tag_name('body').send_keys(Keys.CONTROL + 'w')
Может кто-нибудь сказать мне, что не так? Раньше это работало, но я все испортил, а теперь нет. Ничего не происходит после:
LinkDoPerfil = driver.get("https://www.spiritfanfiction.com/recentes?pagina=1000")