I have to Drag and Drop an item in a same page of a web site, so I have used Drag and Drop activity and given source element and destination element which are in same page.
But this is not working and not throwing any error, can anyone help me.
If the Drag and Drop activity is not working and not throwing any error, there are a few possible reasons and solutions:
Check if the source and destination elements are valid: Make sure that the source and destination elements you are using in the Drag and Drop activity are valid and accessible elements on the web page. If the elements are not valid or are not accessible, the activity will not work correctly.
Check if the web page is fully loaded: Make sure that the web page is fully loaded before you perform the Drag and Drop activity. If the web page is not fully loaded, the activity may not work correctly. You can use the “Wait for Ready” property of the activity to ensure that the web page is fully loaded before the activity is executed.
Check if the Drag and Drop activity is configured correctly: Make sure that the Drag and Drop activity is configured correctly, with the correct source and destination elements specified. Double-check the selectors for the elements to ensure that they are accurate and match the elements on the web page.
Check if there are any other activities that may be interfering with the Drag and Drop activity: Make sure that there are no other activities that may be interfering with the Drag and Drop activity. If there are other activities running on the same web page that may be interfering with the Drag and Drop activity, you may need to adjust the order of the activities or use a different approach.
Try using a different approach: If none of the above solutions work, you may need to use a different approach to perform the Drag and Drop action, such as using the “Click and Hold” and “Release” activities to simulate the Drag and Drop action. You could also try using JavaScript code to perform the Drag and Drop action directly on the web page.