Senior
Räägi mulle oma kogemusest, milliste tööriistadega oled töötanud
sobes.tech AI
Vastus AI-lt
In my QA automation experience, I have used the following tools:
- Selenium WebDriver — for automating UI tests of web applications.
- Postman and REST-assured — for API testing.
- Jenkins — for setting up CI/CD and running tests automatically.
- JUnit/TestNG — frameworks for writing and organizing tests in Java.
- Allure Report — for generating test reports.
- Jira — for task management and bug tracking.
Example of using Selenium in Java:
WebDriver driver = new ChromeDriver();
driver.get("https://example.com");
WebElement loginButton = driver.findElement(By.id("login"));
loginButton.click();
// Check for successful transition
Assert.assertEquals(driver.getTitle(), "Dashboard");
driver.quit();
I also worked with load testing tools like JMeter and version control systems like Git.