user3021997
user3021997

Reputation: 105

How would I test payment methods within magento 1.8.0.0.?

I was just wondering if anybody knows how to test magento's payment options.

I have got a few questions.

  1. Do I need to change any code within any of the pages?
  2. Do I need to make any changes to the admin settings ?
  3. Is there a simple setting to test these payment methods out?
  4. Is there only certain payment methods that you can actually check?

Upvotes: 8

Views: 15539

Answers (4)

Daniel Loureiro
Daniel Loureiro

Reputation: 5383

You can create a 99% discount coupon.

PS: From my experience, that's the standard to test live websites. The sandbox payment only works on staging/dev sites, as it puts the entire website on dev mode.

Upvotes: 0

lazy_coder
lazy_coder

Reputation: 61

If you want to use Express Checkout:

  1. Go to developer.paypal.com and log in using your PayPal account (it doesn't matter if the acount is empty or not).
  2. Click on the menu item on the top dashboard and then select Accounts from the sidebar.
  3. There, you will find 2 test accounts already set for you. You can modify the existing acounts or create new ones.

This post may help you.

Upvotes: 2

Deependra Singh
Deependra Singh

Reputation: 1514

No you dont need to change any code. Its all handled from backend.

Generally for development purpose we use Cash on delivery or Check/Money Order payment method. So you just need to enable these method from backend.

For Testing Credit Cards enable 'Saved CC' Payment Method and during checkout use test credit card type VISA, card number 4111111111111111 with any date of future for Expiration Date and any cvv number

Additionally for proper payment gateway integration You will need to purchase payment gateway which will provide Magento Module along with it. This Payment Method will have 2 modes test and live that are configurable from banckend. So with test mode you can continue development and testing.

Similarly with Paypal. Yo can setup Sandbox test account. Module is already there.

Upvotes: 16

Dharmesh Hariyani
Dharmesh Hariyani

Reputation: 394

Yes you can test on local host with setup sendbox account.

Upvotes: 1

Related Questions