We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 49e8bca commit 6557783Copy full SHA for 6557783
javascript/webdriver/test/until_test.js
@@ -164,8 +164,8 @@ function testUntilAbleToSwitchToFrame_timesOutIfNeverAbletoSwitchFrames() {
164
165
driver.wait(until.ableToSwitchToFrame(0), 100).then(fail, function(e) {
166
assertTrue(count > 0);
167
- assertTrue('Wrong message: ' + e.message,
168
- goog.string.startsWith(e.message, 'Wait timed out after'));
+ assertTrue('Wrong message: ' + e.message, goog.string.startsWith(
+ e.message, 'Waiting to be able to switch to frame'));
169
test.continueTesting();
170
});
171
}
0 commit comments