Sobes.tech
Junior — Middle

Ce tehnologii și instrumente folosești în munca ta?

sobes.tech AI

Răspuns de la AI

În activitatea de QA Automation, se utilizează frecvent următoarele tehnologii și instrumente:

  • Limbaje de programare: Java, Python, JavaScript
  • Framework-uri pentru automatizarea testelor: Selenium WebDriver, Cypress, TestNG, JUnit
  • Instrumente pentru gestionarea testelor și bug-urilor: Jira, TestRail
  • Sisteme CI/CD: Jenkins, GitLab CI
  • Instrumente pentru testarea API-urilor: Postman, RestAssured
  • Controlul versiunilor: Git

Exemplu de test simplu în Java folosind Selenium:

import org.openqa.selenium.WebDriver;
import org.openqa.selenium.chrome.ChromeDriver;
import org.openqa.selenium.By;

public class SimpleTest {
    public static void main(String[] args) {
        WebDriver driver = new ChromeDriver();
        driver.get("https://example.com");
        String title = driver.getTitle();
        System.out.println("Titlu: " + title);
        driver.quit();
    }
}