How many of you actually test your projects? (We all know the answer is "Not enough!") Here are two of the best automation testing tools I’ve found:
Robot Framework: A keyword-driven testing tool that uses easy-to-understand language for creating test cases.
Example:
Puppeteer: A JavaScript-based automation tool by Google, bundled with ChromeDriver.
Example:
Remember, “To test or not to test is never the question. The answer is always: automate it!”
#AutomationTesting
@tiletsolution
Robot Framework: A keyword-driven testing tool that uses easy-to-understand language for creating test cases.
Example:
*** Settings ***
Library SeleniumLibrary
*** Variables ***
${URL} https://example.com
*** Test Cases ***
Open Browser and Check Title
Open Browser ${URL} chrome
Title Should Be Example Domain
Close Browser
Puppeteer: A JavaScript-based automation tool by Google, bundled with ChromeDriver.
Example:
const puppeteer = require('puppeteer');
(async () => {
const browser = await puppeteer.launch();
const page = await browser.newPage();
await page.goto('https://example.com');
const title = await page.title();
console.log(title); // Example Domain
await browser.close();
})();Remember, “To test or not to test is never the question. The answer is always: automate it!”
#AutomationTesting
@tiletsolution