“Python Selenium flota sobre elemento” Código de respuesta

Python Selenium flota sobre elemento

from selenium import webdriver
from selenium.webdriver.common.action_chains import ActionChains

driver = webdriver.Firefox()
driver.get('http://example.com')
element_to_hover_over = firefox.find_element_by_id("foo")

# actual hover
ActionChains(driver).move_to_element(element_to_hover_over).perform()
garzj

Cómo flotar el ratón sobre un elemento en Selenium

By using Actions class

WebElement element = driver.findElement(By.xpath("xpath"));
Actions action = new Actions(driver);
action.moveToElement(element).perform();
Thankful Tuatara

Respuestas similares a “Python Selenium flota sobre elemento”

Preguntas similares a “Python Selenium flota sobre elemento”

Más respuestas relacionadas con “Python Selenium flota sobre elemento” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código