public void WhenICompleteCheckout()
        {
            _driver.Url = test_url + "/index.php?controller=order&step=1";
            CheckoutPage checkout = new CheckoutPage(_driver);

            checkout.CompleteCheckoutSimple(true);
            this.lastOrderRef = checkout.GetOrderRef();
        }