|
191 | 191 | var testClickCanToggleOptionsInAMultiSelect =
|
192 | 192 | // Disabled on Chrome due to
|
193 | 193 | // https://code.google.com/p/chromedriver/issues/detail?id=1073
|
194 |
| - goog.userAgent.product.CHROME ? goog.nullFunction : |
| 194 | + // Disabled on Safari due to |
| 195 | + // https://github.com/SeleniumHQ/selenium/issues/461 |
| 196 | + (goog.userAgent.product.CHROME || goog.userAgent.product.SAFARI) ? |
| 197 | + goog.nullFunction : |
195 | 198 | goog.partial(canToggleOptionsInAMultiSelect, bot.action.click);
|
196 | 199 |
|
197 | 200 | var testTapCanToggleOptionsInAMultiSelect =
|
198 | 201 | // Disabled on Chrome due to
|
199 | 202 | // https://code.google.com/p/chromedriver/issues/detail?id=1073
|
200 |
| - goog.userAgent.product.CHROME ? goog.nullFunction : |
| 203 | + // Disabled on Safari due to |
| 204 | + // https://github.com/SeleniumHQ/selenium/issues/461 |
| 205 | + (goog.userAgent.product.CHROME || goog.userAgent.product.SAFARI) ? |
| 206 | + goog.nullFunction : |
201 | 207 | goog.partial(canToggleOptionsInAMultiSelect, bot.action.tap);
|
202 | 208 |
|
203 | 209 | function canToggleCheckboxes(action) {
|
|
328 | 334 | }
|
329 | 335 |
|
330 | 336 | var testClickCanSelectOptionWhenDefaultPrevented =
|
| 337 | + // Disabled on Safari due to |
| 338 | + // https://github.com/SeleniumHQ/selenium/issues/461 |
| 339 | + goog.userAgent.product.SAFARI ? |
| 340 | + goog.nullFunction : |
331 | 341 | goog.partial(canSelectOptionWhenDefaultPrevented, bot.action.click);
|
332 | 342 |
|
333 | 343 | var testTapCanSelectOptionWhenDefaultPrevented =
|
334 | 344 | // Disabled on Chrome due to
|
335 | 345 | // https://code.google.com/p/chromedriver/issues/detail?id=1073
|
336 |
| - goog.userAgent.product.CHROME ? goog.nullFunction : |
| 346 | + // Disabled on Safari due to |
| 347 | + // https://github.com/SeleniumHQ/selenium/issues/461 |
| 348 | + (goog.userAgent.product.CHROME || goog.userAgent.product.SAFARI) ? |
| 349 | + goog.nullFunction : |
337 | 350 | goog.partial(canSelectOptionWhenDefaultPrevented, bot.action.tap);
|
338 | 351 |
|
339 | 352 | function cannotSelectCheckboxWhenDefaultPrevented(action) {
|
|
528 | 541 | }
|
529 | 542 |
|
530 | 543 | var testClickTogglesByTheTimeChangeEventFires =
|
| 544 | + // Disabled on Safari due to |
| 545 | + // https://github.com/SeleniumHQ/selenium/issues/461 |
| 546 | + goog.userAgent.product.SAFARI ? |
| 547 | + goog.nullFunction : |
531 | 548 | goog.partial(togglesByTheTimeChangeEventFires, bot.action.click);
|
532 | 549 |
|
533 | 550 | var testTapTogglesByTheTimeChangeEventFires =
|
534 | 551 | // Disabled on Chrome due to
|
535 | 552 | // https://code.google.com/p/chromedriver/issues/detail?id=1073
|
536 |
| - goog.userAgent.product.CHROME ? goog.nullFunction : |
| 553 | + // Disabled on Safari due to |
| 554 | + // https://github.com/SeleniumHQ/selenium/issues/461 |
| 555 | + (goog.userAgent.product.CHROME || goog.userAgent.product.SAFARI) ? |
| 556 | + goog.nullFunction : |
537 | 557 | goog.partial(togglesByTheTimeChangeEventFires, bot.action.tap);
|
538 | 558 | </script>
|
539 | 559 | </head>
|
|
0 commit comments