getShippingMethods() public method

public getShippingMethods ( ) : string[]
return string[]
Esempio n. 1
0
 /**
  * @Then I should have :shippingMethodName shipping method available as the last choice
  */
 public function iShouldHaveShippingMethodAvailableAsLastChoice($shippingMethodName)
 {
     $shippingMethods = $this->selectShippingPage->getShippingMethods();
     $lastShippingMethod = end($shippingMethods);
     Assert::same($shippingMethodName, $lastShippingMethod);
 }