测试 Rails 3 中的拖放功能

发布于 2024-12-05 15:15:10 字数 132 浏览 1 评论 0原文

如何根据 rspec 请求规范模拟拖放功能?

我有 #divItem 元素,我正在将其拖放到 #divContainer 元素(jquery)中。在页面刷新时,我想确保 #divItem 元素位于 #divContainer 元素内。

How do you simulate drag and drop functionality from rspec request specs?

I have #divItem element I am dragging and dropping in #divContainer element (jquery). On page refresh I want to make sure that #divItem element is within #divContainer element.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

独留℉清风醉 2024-12-12 15:15:10
it "should drag item to new list", :js => true do
  item = Item.create!(:title => "title 1", :group => "group 1")

  # verify that item is withing group 1
  visit items_path
  within("#group 1") do # id of a div element (or ul element)
    page.should have_content("title 1")
  end    

  item_element = find("##{item.id}")     
  new_group_element = find("#group 2")
  item_element.drag_to new_group_element

  # verify that after page reload item is withing the new group
  visit items_path
  within("#group 2") do 
    page.should have_content("title 1")
  end

end
it "should drag item to new list", :js => true do
  item = Item.create!(:title => "title 1", :group => "group 1")

  # verify that item is withing group 1
  visit items_path
  within("#group 1") do # id of a div element (or ul element)
    page.should have_content("title 1")
  end    

  item_element = find("##{item.id}")     
  new_group_element = find("#group 2")
  item_element.drag_to new_group_element

  # verify that after page reload item is withing the new group
  visit items_path
  within("#group 2") do 
    page.should have_content("title 1")
  end

end
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文