Blog / Author: Artem Golubev

Responsive Design Testing

Modern performance metrics like search engine rankings, visitor retention, and site engagement time are being diligently ...

What is a Test Automation Framework?

When developing any application, testing is an integral part of the process. This helps ensure that the application meets quality ...

The QA Professional’s Guide to Managing Production Bugs

In the world of software development, bugs are an inevitable part of the process. As much as developers strive to create flawless ...

Selenium with C# Cheat Sheet

Driver Initialization Chrome IWebDriver driver = new ChromeDriver(); Firefox IWebDriver driver = new FirefoxDriver(); Edge ...

Selenium with JS (JavaScript) Cheat Sheet

Driver Initialization Chrome const driver = await new Builder().forBrowser('chrome').build(); Firefox const driver = await new ...

Selenium with Ruby Cheat Sheet

Driver Initialization Chrome driver = Selenium::WebDriver.for :chrome Firefox driver = Selenium::WebDriver.for :firefox Edge ...

Selenium with Java Cheat Sheet

Driver Initialization Chrome WebDriver driver = new ChromeDriver(); Firefox WebDriver driver = new FirefoxDriver(); Edge ...

Selenium with Python Cheat Sheet

Selenium is a popular browser automation framework used for web testing automation. This cheat sheet provides a quick reference ...
1 3 4 5 6 7 15