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 17d494d commit d1d8769Copy full SHA for d1d8769
dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Order/Create/Shipping/Method.php
@@ -36,7 +36,9 @@ class Method extends Block
36
*/
37
public function selectShippingMethod(array $shippingMethod)
38
{
39
- $this->_rootElement->find($this->shippingMethodsLink)->click();
+ if ($this->_rootElement->find($this->shippingMethodsLink)->isVisible()) {
40
+ $this->_rootElement->find($this->shippingMethodsLink)->click();
41
+ }
42
$selector = sprintf(
43
$this->shippingMethod,
44
$shippingMethod['shipping_service'],
0 commit comments