# E2e Testing

> Implement end-to-end testing with Selenium, Playwright for CIA platform UI and workflow validation

- Skill: `hack23/e2e-testing` (Agent Skill)
- Install (CLI): `npx skillmds@latest add hack23/e2e-testing`
- Raw SKILL.md: https://api.skillmd.com/api/skills/hack23/e2e-testing/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Productivity
- License: Apache-2.0
- Author: Hack23 (https://skillmd.com/u/hack23)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/hack23/e2e-testing

---


# E2E Testing Skill

## Purpose
Test complete user workflows and UI interactions using Selenium/Playwright.

## When to Use
- ✅ Testing user registration/login flows
- ✅ Testing complex multi-step workflows
- ✅ Testing UI rendering and interactions
- ✅ Cross-browser compatibility testing

## Selenium WebDriver Pattern
```java
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(classes = ApplicationContext.class)
public class LoginE2ETest {
    private WebDriver driver;
    
    @Before
    public void setup() {
        driver = new ChromeDriver();
    }
    
    @Test
    public void shouldLoginSuccessfully() {
        driver.get("http://localhost:8080/login");
        driver.findElement(By.id("username")).sendKeys("testuser");
        driver.findElement(By.id("password")).sendKeys("password");
        driver.findElement(By.id("login-btn")).click();
        
        assertThat(driver.getCurrentUrl()).contains("/dashboard");
    }
}
```

## Page Object Model
```java
public class LoginPage {
    private WebDriver driver;
    
    @FindBy(id = "username")
    private WebElement usernameField;
    
    @FindBy(id = "password")
    private WebElement passwordField;
    
    @FindBy(id = "login-btn")
    private WebElement loginButton;
    
    public void login(String username, String password) {
        usernameField.sendKeys(username);
        passwordField.sendKeys(password);
        loginButton.click();
    }
}
```

## References
- Selenium: https://www.selenium.dev/
- E2ETestPlan.md
