Skip to content

Instantly share code, notes, and snippets.

View Atmozo's full-sized avatar

Ashely Mozorandi Atmozo

View GitHub Profile
@Atmozo
Atmozo / ai-dev-automation-testing-prompts.md
Created April 11, 2025 17:12
Supercharge your workflow with AI tools like ChatGPT, GitHub Copilot, or Claude for writing test cases, reviewing code, generating mocks, and planning test coverage.

💡 Common Use Prompts

🧪 Test Case Generator (Unit, E2E, API)

You're a senior QA Engineer. Write test cases for a login page that includes:
- Email + password input
- Remember me checkbox
@Atmozo
Atmozo / automation-testing-power-guide.md
Created April 11, 2025 17:09
A focused, cheatsheet for automation testers — covering Java, Python, Cypress, Postman, mobile (Appium), and general testing strategies.

🧪 Automation Testing Power Guide

From Web to API to Mobile — build robust, scalable automation frameworks with these powerful techniques and tools.


🧩 1. Java + Selenium Page Object Model (POM)

public class LoginPage {
@Atmozo
Atmozo / java-dev-tricks.md
Created April 11, 2025 17:04
# ☕ Java Developer Power Tricks & Snippets

Boost your Java productivity with these code snippets, best practices, and hidden gems for clean, performant development.


🔁 Swap Two Numbers Without Temp

int a = 5, b = 10;
a = a + b;
b = a - b;
@Atmozo
Atmozo / dev-terminal-cheatsheet.md
Created April 11, 2025 16:53
🧠 Dev Terminal Commands Cheat Sheet

A collection of handy terminal commands for developers, from Git to Docker and more!


⚙️ Git Basics

git init                        # Initialize a new repo
git clone <url>                 # Clone a repo
git status                      # Check current status