You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am dragging one text element from a tree to a drop zone. After element get dropped will have a table displayed. No errors shown but the element is not getting dropped. Also when we do dragging manually ->we can see a bubble with green color until it get dropped. That also not got displayed.
Note:both element identification is successful. I have gone through the issues mentioned on cypress.io channels but my issue is not same.
This is actually not dragging element to drop zone.
This is basic step for our application - we are in process of changing smoke tests to use cypress instead of selenium.
This issue actually blocks this. Any help appreciated.
Once we run smoke on CI/CD we are also looking for dashboard services to report
describe('Drag and drop of Gender test',function(){constdataTransfer=newDataTransfer;functiondndIt(){cy.get('.tree-item-content').contains("Gender").trigger('dragstart',{ dataTransfer });cy.get('#itl-drop-zone-down').trigger('drop',{ dataTransfer });cy.get('.tree-item-content').contains("Gender").trigger('dragend');}beforeEach(function(){cy.viewport(1000,600);cy.visit('Paste your url ');});it('Check whether the drag and drop of Gender is possible',function(){dndIt();cy.get('#itl-drop-zone-down').should(($el)=>{expect($el.children()).to.have.lengthOf(1)});});});
Chrome:71(Tried on Electron59 also same issue)
Cypress version 3.1.4
The text was updated successfully, but these errors were encountered:
Alternatively, signing up for any of you paid plans gives you access to our team for support via email. If you would like something higher touch, we also offer screen sharing and workshops with our premium support options.
I am dragging one text element from a tree to a drop zone. After element get dropped will have a table displayed. No errors shown but the element is not getting dropped. Also when we do dragging manually ->we can see a bubble with green color until it get dropped. That also not got displayed.
Note:both element identification is successful. I have gone through the issues mentioned on cypress.io channels but my issue is not same.
This is actually not dragging element to drop zone.
This is basic step for our application - we are in process of changing smoke tests to use cypress instead of selenium.
This issue actually blocks this. Any help appreciated.
Once we run smoke on CI/CD we are also looking for dashboard services to report
HTML for element to be dragged
HTML for Drop Zone
I tired below solution but not working
Chrome:71(Tried on Electron59 also same issue)
Cypress version 3.1.4
The text was updated successfully, but these errors were encountered: