Skip to content

Commit

Permalink
Disable DialogUnderlay test on android too.
Browse files Browse the repository at this point in the history
I thought it was working a few days ago but suddenly the pressFinger()/releaseFinger()
sequence doesn't generate a click event, leading to a spurious test failure.
  • Loading branch information
wkeese committed Oct 4, 2015
1 parent 0467872 commit fb4126a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/functional/DialogUnderlay.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ define([
return this.skip("firefox webdriver clicks elements behind the underlay, even though that " +
"doesn't happen in real life");
}
if (this.remote.environmentType.platformName === "iOS") {
return this.skip("pressFinger(15, 15) not supported on iOS yet");
if (this.remote.environmentType.touchEnabled || this.remote.environmentType.platformName === "iOS") {
return this.skip("pressFinger() not supported on iOS, and doesn't generate click event on android");
}
return this.remote
// First make sure that when the underlay isn't showing I can click the button and it executes.
Expand Down

0 comments on commit fb4126a

Please sign in to comment.