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
I am trying to move an element from outside of iframe to inside iframe but it seems that never worked.
This is a website URL where I executed below code: https://grapesjs.com/demo.html
element_source = self._selenium.find_element(By.XPATH, '//div[@class="gjs-block-label"][contains(.,"Tooltip")]') element_target=self._selenium.find_element(By.CLASS_NAME,'gjs-frame') actions = ActionChains(self._driver) actions.drag_and_drop(element_source, element_target).perform() time.sleep(5)
Expecting that element from the right panel should move to left iframe.
The text was updated successfully, but these errors were encountered:
Unfortunately this is by design. You will need to use another mechanism to do this.
The technical reason is we need to keep a map of elements and that is bound by the document and is not shared between documents.
Sorry, something went wrong.
No branches or pull requests
🐛 Bug Report
I am trying to move an element from outside of iframe to inside iframe but it seems that never worked.
To Reproduce
This is a website URL where I executed below code: https://grapesjs.com/demo.html
Expected behavior
Expecting that element from the right panel should move to left iframe.
Environment
The text was updated successfully, but these errors were encountered: