My QA Projects

QA Projects I was involded.

View on GitHub

Agile Testing

šŸ“Œ Definition:

šŸŽÆ My expertise collaborating with developers in an Agile environment

āœ” My role in sprint cycles and CI/CD testing (Plangrid/Autodesk)

āœ” My early-stage testing & shift-left approach (Google, Amazon, Plangrid)

āœ” Agile testing types (TDD, BDD, exploratory testing, regression automation)

āœ” My collaboration with Product & Development teams


DRAFT!

Testing Types Relevant to Appleā€™s Mobile Apps/E-commerce

1ļøāƒ£ Functional Testing

Test Approaches:

2ļøāƒ£ Regression Testing

Key Areas:

3ļøāƒ£ Performance Testing

Example: Checking how the Apple Store app handles high user traffic during iPhone pre-orders. Tools: Instruments (Xcode), XCTest, Firebase Performance Monitoring.

Key Metrics:

4ļøāƒ£ Usability Testing

Example: Testing the checkout flow for one-handed use, VoiceOver accessibility.

Key Areas:

5ļøāƒ£ Compatibility Testing

Example: Testing Apple Store app on iPhone SE, iPhone Pro Max, iPad Pro.

Key Areas:

6ļøāƒ£ Localization Testing

Example: Checking if French and Japanese translations display correctly.

Key Areas:


Functional Testing:

Unit Testing: Focuses on testing individual components or units of code in isolation. Ā 

Integration Testing: Verifies that different units or modules of the application work together correctly. Ā 

System Testing: Evaluates the complete, integrated system to ensure it meets specified requirements. Ā 

End-to-End Testing: Tests the applicationā€™s workflow from beginning to end, simulating real-user scenarios. Ā  Acceptance Testing (User Acceptance Testing - UAT): Determines whether the application meets the end-userā€™s needs and business requirements. Ā 

Functional Testing: done a lot Unit Testing: just for me privately Integration Testing: some System Testing: not really except with Oculus 3. Evaluates the complete, integrated system to ensure it meets specified requirements. Ā  End-to-End Testing: Done - a lot Acceptance Testing (User Acceptance Testing - UAT): Done - a lot

Non-Functional Testing:

Performance Testing:

Evaluates the applicationā€™s speed, stability, and responsiveness under various workloads. Ā  Includes: Load Testing: Assessing performance under expected user loads. Ā  Stress Testing: Testing beyond normal capacity to find breaking points. Ā  Scalability Testing: Evaluating the applicationā€™s ability to handle increasing workloads. Ā  Security Testing: Identifies vulnerabilities and weaknesses in the applicationā€™s security. Ā  Usability Testing: Evaluates the ease of use and user-friendliness of the application. Ā  Compatibility Testing: Ensures the application works correctly across different browsers, operating systems, and devices. Ā  Accessibility Testing: Ensures that applications are usable by people with disabilities. Ā  Other Important Testing Types:

Performance Testing: Done - a lot Includes: Stress Testing: Scalability Testing: Usability Testing: Compatibility Testing: Accessibility Testing:

Regression Testing:

Verifies that new code changes do not negatively impact existing functionality. Ā 

Smoke Testing:

Performs a quick check of the applicationā€™s core functionality to ensure it is stable enough for further testing. Ā  Sanity Testing: Performed after bug fixes, to ensure that the fixes worked, and that no new issues were introduced. Ā  Black-Box Testing: Testing without knowledge of the applicationā€™s internal code. Ā  White-Box Testing: Testing with knowledge of the applicationā€™s internal code. Gray-Box Testing: A combination of black box and white box testing.

Done - a lot Smoke Testing: Done - a lot Sanity Testing: Done - a lot Black-Box Testing: Done - a lot White-Box Testing: not for software