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
package org.example.java8;
import java.time.Duration;
import java.time.Instant;
import java.time.temporal.TemporalUnit;
public class GetDuration {
public static void main(String[] args) throws InterruptedException {
@pragmatictesters
pragmatictesters / pom.xml
Last active December 28, 2018 17:46
Selenium WebDriver Samaple project pom.xml
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.pragmatic.selenium</groupId>
<artifactId>ptl-hrm</artifactId>
<version>0.0.1</version>
<description>PTL-Unilever-Maven-ProjectFile</description>
@pragmatictesters
pragmatictesters / JavaScriptPopups.java
Created December 26, 2018 17:24
Selenium WebDriver Example Working with Javascript popups
package com.pragmatic.selenium.examples;
import io.github.bonigarcia.wdm.WebDriverManager;
import org.openqa.selenium.Alert;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.chrome.ChromeDriver;
import org.openqa.selenium.chrome.ChromeOptions;
import org.openqa.selenium.support.ui.ExpectedConditions;
import org.openqa.selenium.support.ui.WebDriverWait;
@pragmatictesters
pragmatictesters / HelloSelenium.java
Created December 26, 2018 17:39
Selenium WebDriver Examples : Login to PTL HRM Demonstrate use of basic commands in Selenium
package com.pragmatic.selenium;
import io.github.bonigarcia.wdm.WebDriverManager;
import org.openqa.selenium.By;
import org.openqa.selenium.Keys;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.chrome.ChromeDriver;
import org.testng.Assert;
import org.testng.annotations.Test;
@pragmatictesters
pragmatictesters / LoginTest.java
Created December 26, 2018 18:23
Selenium WebDriver Examples : PTL HRM Login Test Cases
package com.pragmatic.selenium.hrm;
import io.github.bonigarcia.wdm.WebDriverManager;
import org.openqa.selenium.By;
import org.openqa.selenium.Keys;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.chrome.ChromeDriver;
import org.openqa.selenium.chrome.ChromeOptions;
import org.testng.Assert;
import org.testng.annotations.AfterMethod;
@pragmatictesters
pragmatictesters / AddEmployeeTest.java
Created December 26, 2018 19:41
Selenium WebDriver Example : Add a new employee
package com.pragmatic.selenium.hrm;
import com.github.javafaker.Faker;
import io.github.bonigarcia.wdm.WebDriverManager;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.chrome.ChromeDriver;
import org.openqa.selenium.chrome.ChromeOptions;
import org.openqa.selenium.support.ui.Select;
import org.testng.Assert;
@pragmatictesters
pragmatictesters / DragAndDropExample.java
Created December 27, 2018 07:48
Selenium WebDriver Examples : Drag and Drop using Actions Class
package com.pragmatic.selenium.examples;
import io.github.bonigarcia.wdm.WebDriverManager;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.chrome.ChromeDriver;
import org.openqa.selenium.interactions.Actions;
import org.testng.Assert;
import org.testng.annotations.Test;
@pragmatictesters
pragmatictesters / LoginTestDDT.java
Last active December 28, 2018 17:43
Selenium WebDriver Examples : Data Driven testing
package com.pragmatic.selenium.hrm;
import io.github.bonigarcia.wdm.WebDriverManager;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.chrome.ChromeDriver;
import org.openqa.selenium.chrome.ChromeOptions;
import org.testng.Assert;
import org.testng.annotations.*;
@pragmatictesters
pragmatictesters / TakeScreenshotExample.java
Last active December 28, 2018 17:43
Selenium WebDrive Examples - Take a Screenshot with a time stam
package com.pragmatic.selenium.hrm.examples;
import com.github.javafaker.Faker;
import io.github.bonigarcia.wdm.WebDriverManager;
import org.apache.commons.io.FileUtils;
import org.openqa.selenium.By;
import org.openqa.selenium.OutputType;
import org.openqa.selenium.TakesScreenshot;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.chrome.ChromeDriver;
@pragmatictesters
pragmatictesters / 1user-login.feature
Last active December 29, 2018 06:32
Selenium WebDriver Cucumber Integration Example : Sample Feature File and Step Definition file
Feature: User login feature
Sample Feature File with Data Driven Testing (DDT)
Scenario: Invalid user login with blank password
Given I have accessed the HRM login page
When I type username "Admin"
And I type password ""
And I click login button
Then I should see error message "Password cannot be empty"