Skip to content

Instantly share code, notes, and snippets.

@p0deje
Last active March 27, 2017 05:50
Show Gist options
  • Save p0deje/bd7e03e6f52886d18fd9c0659c82c088 to your computer and use it in GitHub Desktop.
Save p0deje/bd7e03e6f52886d18fd9c0659c82c088 to your computer and use it in GitHub Desktop.
IEDriverServer Beta Testing with WatirSpec
Finished in 20 minutes 0 seconds (files took 5.53 seconds to load)
1306 examples, 8 failures
Failed examples:
rspec ./spec/watirspec/after_hooks_spec.rb:130 # Browser::AfterHooks #run raises UnhandledAlertError error when running error checks with alert present
rspec ./spec/watirspec/alert_spec.rb:27 # Alert API alert #exists? returns true if alert is present
rspec ./spec/watirspec/browser_spec.rb:80 # Browser #name returns browser name
rspec ./spec/watirspec/cookies_spec.rb:62 # Browser#cookies adds a cookie with options
rspec ./spec/watirspec/elements/button_spec.rb:136 # Button #style returns the style attribute if the button exists
rspec ./spec/watirspec/elements/tr_spec.rb:39 # TableRow #click fires the row's onclick event
rspec ./spec/watirspec/window_switching_spec.rb:112 # Window multiple windows #close closes a window
rspec ./spec/watirspec/window_switching_spec.rb:120 # Window multiple windows #close closes the current window
Finished in 40 minutes 54 seconds (files took 5.78 seconds to load)
1306 examples, 14 failures
Failed examples:
rspec ./spec/watirspec/after_hooks_spec.rb:130 # Browser::AfterHooks #run raises UnhandledAlertError error when running error checks with alert present
rspec ./spec/watirspec/alert_spec.rb:27 # Alert API alert #exists? returns true if alert is present
rspec ./spec/watirspec/browser_spec.rb:80 # Browser #name returns browser name
rspec ./spec/watirspec/cookies_spec.rb:62 # Browser#cookies adds a cookie with options
rspec ./spec/watirspec/drag_and_drop_spec.rb:19 # Element drag and drop can drag and drop an element onto another when draggable is out of viewport
rspec ./spec/watirspec/drag_and_drop_spec.rb:24 # Element drag and drop can drag and drop an element onto another when droppable is out of viewport
rspec ./spec/watirspec/drag_and_drop_spec.rb:30 # Element drag and drop can drag an element by the given offset
rspec ./spec/watirspec/elements/button_spec.rb:136 # Button #style returns the style attribute if the button exists
rspec ./spec/watirspec/elements/radio_spec.rb:197 # Radio #set sets the radio button
rspec ./spec/watirspec/elements/tr_spec.rb:39 # TableRow #click fires the row's onclick event
rspec ./spec/watirspec/relaxed_locate_spec.rb:201 # Watir#relaxed_locate? when false when acting on an element that eventually becomes present raises exception immediately
rspec ./spec/watirspec/window_switching_spec.rb:360 # Window manipulating size and position should resize the window
rspec ./spec/watirspec/window_switching_spec.rb:376 # Window manipulating size and position should move the window
rspec ./spec/watirspec/window_switching_spec.rb:393 # Window manipulating size and position should maximize the window

IEDriverServer Beta Testing

Environment

Win 7 with IE11 (using ModerIE) selenium-webdriver 3.3.0 IEDriverServer_beta_Win32_3.3.99.1

Good News

I can confirm that I can reproduce SeleniumHQ/selenium#3587 using WatirSpec. It fails using IEDriverServer 3.3, but does not failing using beta, so it was somehow fixed.

Bad News

I have only one spec that fails on beta but passes on 3.3. The specs are about drag and drop functionality. While basic "drag element and drop to another element" passes, there are few that are failing:

  1. Drag element that is out of viewport.
  2. Drop on element that is out of viewport.
  3. Drag element and drop by offset.

Ruby bindings don't work with W3C dialect of IEDriverServer, so I needed to hack it around in order to make specs run, but I still need time to turn these failures into bug reports. I hope to do that during the weekend.

@p0deje
Copy link
Author

p0deje commented Mar 27, 2017

I'll see how geckodriver handles these specs and will let you know the difference.

Looks like Ruby bindings don't fully support Actions endpoints for GeckoDriver, so these specs are disabled.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment