I'm creating drag and drop feature that depends on upon ID for placement, it works perfectly fine, but I need the status of task to be user defined so the user will have control of where something will be dragged as each section is uniquely named.
getID refers to getting the reference id of a Div.
I'd then concatenating with a "_" as well as adding the user set word
Class:
def addtask
dropTask = @browser.div(:id => getID+"_"+"@#{statusOfTask}")
dragTask = @browser.div(:id, "footer").span(:class, "headerDrag")
dragTask.drag_and_drop_on dropTask
end
User Script:
statusOfTask = ["Ready"]
addtask()
Any ideas?