We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
from selenium import webdriver from selenium.webdriver.remote.webelement import WebElement from selenium.webdriver import ActionChains driver = webdriver.PhantomJS() driver.get('http://pythonscraping.com/pages/javascript/draggableDemo.html') print(driver.find_element_by_id("message").text) element = driver.find_element_by_id("draggable") target = driver.find_element_by_id("div2") actions = ActionChains(driver) actions.drag_and_drop(element, target).perform() print(driver.find_element_by_id("message").text)
It doesn't work in these code. Is it a bug?
The text was updated successfully, but these errors were encountered:
duplicate of #1365 selenium's actions api doesn't work with the 'draggable' events used on the page (it doesn't fire them appropriately)
Sorry, something went wrong.
Thank you for your help!
No branches or pull requests
It doesn't work in these code.
Is it a bug?
The text was updated successfully, but these errors were encountered: