Posts

Test Cases for Payment Gateway.

Image
  The purpose of payment gateway testing is to insure the security, trust ability and performance of a payment gateway by cracking and securing the payment details between stoner and trafficker while furnishing a smooth payment experience. Check List: How to Test Payment Gateway. 1. Arrange proper test data for the dummy credit card number for the maestro, visa, master, etc. 2. Collect payment gateway information like Google Pay, Google Wallet, PayPal, Paytm, or else 3. Collect payment gateway documents with error codes 4. Check for the application response after the transaction. 5. Check for the message that is displayed after a successful transaction. 6. Check for the message that is displayed after an unsuccessful transaction. 7. Check for the language and currency that is relevant to the location. 8. Check the error message if a payment fails. 9. Check redirection after successful payment 10. Check all payment options are working properly. 11. Check for the messag...

How disable save password popup in chrome browser using Selenium.

Image
Whenever users log in with their credentials it displays a popup alert for saving their credentials.  In Chrome Browser login with credentials, it displays one popup near the address bar.  Manually we can uncheck to disable the popup. but in this post, we will see how we can disable this popup dialog with help of Chrome Options   we use this preferences for disable  prefs.put("credentials_enable_service", false);                                          prefs.put("profile.password_manager_enabled", false); Here is the brief implementation code  Note: All the URL and path, Images is for reference purpose only. do not misuse.  

𝐓𝐎 𝐤𝐧𝐨𝐰 𝐚𝐛𝐨𝐮𝐭 𝐒𝐞𝐯𝐞𝐫𝐢𝐭𝐲 & 𝐏𝐫𝐢𝐨𝐫𝐢𝐭𝐲

Image
TO know about Severity & Priority       ► Priority                                                                                                                     it indicate how soon bug should be fixed. Priority defines the order in which we  should resolve an error. Should we fix it now or wait? It could be low, medium and high. It depends on customer requirement. Low: defect isn’t harmful to the Product, so it can be resolve after the critical/harmful defects are fixed or a later date.     Medium : it can be resolved throughout the normal process of development.it can be tested in another build or version. High : error must be solve as s...

Test Cases For Mobile Number Field

Image
Some Important Test Case For Mobile Number Fields Are Given Below ► Verify that entering Valid 10 digit mobile ie."9876541230". ► Verify that entering less then 10 digit mobile number. ► Verify that entering more than 10 digit mobile number, ► Verify that entering blanc space between mobile number. ► Verify that entering blanc space before mobile number i.e.." 8765441230". ► Verify that entering blanc space after mobile number ie."987654123 ". ► Verify that mobile number field text must be copy and past  ► Verify that mobile number field entering without any value. ► Verify that Asterisk * symbol is display when the field is mandatory.  ► Verify that mobile number by entering special characters & characters. ► Verify that alert message display when entering wrong values in mobile number filed. ► Verify that place holder is proper text or proper visibility  ► Verify that country wise mobile number validation work or not. Hope The Above Test Cases Are he...