Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings
This repository was archived by the owner on Nov 29, 2018. It is now read-only.
This repository was archived by the owner on Nov 29, 2018. It is now read-only.

HTML5 Drag and Drop with Selenium Webdriver #3604

Open
@lukeis

Description

@lukeis

Originally reported on Google Code with ID 3604

Are there any work arounds to getting HTML5 Drag and Drop working with Selenium Webdriverwith Ruby? I am using Selenium-Webdriver 2.20.0 with Ruby 1.9.2Here is a simple test to reproduce the issue:require "selenium-webdriver"require "test/unit"class Html5DragAndDropTest < Test::Unit::TestCase  def setup    @driver = Selenium::WebDriver.for :firefox    @driver.manage.timeouts.implicit_wait = 30    @verification_errors = []  end  def teardown    @driver.quit    assert_equal [], @verification_errors  end  def test_html5_drag_and_drop    @driver.get("http://html5demos.com/drag")    target = @driver.find_element(:id, "one")    source = @driver.find_element(:id, "bin")    @driver.action.drag_and_drop(target, source).perform    assert target.displayed? == false  endend

Reported byrcorreia@blurb.com on 2012-03-21 19:59:17

Metadata

Metadata

Assignees

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions


    [8]ページ先頭

    ©2009-2025 Movatter.jp