/**
  * @When I confirm :confirmationType
  */
 public function iConfirm($confirmationType)
 {
     $results = $this->getResultForAddress($this->customerAddress);
     $originalAddress = $this->customerAddress;
     $selectedAddress = $confirmationType === 'original' ? $results->getOriginalAddress() : current($results->getSuggestions());
     $this->customerAddress = $this->addressSession->confirmSelection($originalAddress, $selectedAddress);
     $this->iAddTheAddressToMyAddressBook();
 }