Skip to content

Instantly share code, notes, and snippets.

View pragmatictesters's full-sized avatar
😀
Learn | Train | Transform | Earn

Janesh Kodikara pragmatictesters

😀
Learn | Train | Transform | Earn
View GitHub Profile
@pragmatictesters
pragmatictesters / azure-pipelines-testcafe.yml
Last active July 14, 2022 07:17
TestCafe Azure DevOps Integration : Sample YAML pipeline with videos and screens publishes as artefacts
jobs:
- job: Smoke_Staging_Tests
displayName: Smoke tests on staging environment
continueOnError: true
pool:
vmImage: "windows-2022"
timeoutInMinutes: 180
steps:
- script: npm install
displayName: "Install TestCafe and other dependencies"
@pragmatictesters
pragmatictesters / run-multiple-tests.sh
Created August 15, 2021 05:23
Running multiple JMeter tests in a directory and genreating HTML report at the end
JMETER_HOME=../install/apache-jmeter-5.4.1
TEST_PLAN_HOME=/Users/hansi/Documents/learning/Xap.PerformanceTesting/test_plans/xap/sanity/
TEST_RESULT_HOME=/Users/hansi/Documents/learning/Xap.PerformanceTesting/test_results/sanity/
TEST_REPORTS_HOME=/Users/hansi/Documents/learning/Xap.PerformanceTesting/test_reports/sanity/
TEST_RESULT_FILENAME="test-results-xap-sanity-test"
printf "Starting the sanity test\n"
while :; do
@pragmatictesters
pragmatictesters / BrowserManager.java
Last active July 14, 2022 08:38
Selenium WebDriver : Abstracting browser management
package com.pragmatic.cucumber;
import io.github.bonigarcia.wdm.WebDriverManager;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.chrome.ChromeDriver;
import org.openqa.selenium.chrome.ChromeOptions;
import org.openqa.selenium.edge.EdgeDriver;
import org.openqa.selenium.firefox.FirefoxDriver;
import org.openqa.selenium.firefox.FirefoxOptions;
import org.openqa.selenium.ie.InternetExplorerDriver;
@pragmatictesters
pragmatictesters / TestBase.java
Created December 28, 2018 17:36
Selenium WebDriver Examples : Sample TestBase class with support for cross browser testing with headless capabilities
package com.pragmatic.selenium.hrm;
import com.github.javafaker.Faker;
import com.pragmatic.selenium.hrm.pages.LoginPage;
import io.github.bonigarcia.wdm.WebDriverManager;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebDriverException;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.chrome.ChromeDriver;
import org.openqa.selenium.chrome.ChromeOptions;