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 / 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;
@pragmatictesters
pragmatictesters / SwichWindowExample.java
Created December 29, 2018 06:40
Selenium WebDriver Examples : Switching between browser windows
package com.pragmatic.selenium.examples;
import io.github.bonigarcia.wdm.WebDriverManager;
import org.openqa.selenium.By;
import org.openqa.selenium.JavascriptExecutor;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.chrome.ChromeDriver;
import org.testng.Assert;
import org.testng.annotations.AfterMethod;
import org.testng.annotations.BeforeMethod;
@pragmatictesters
pragmatictesters / ReadDataFromXL.java
Created December 29, 2018 09:11
Selenium WebDriver Example : Data Drivern Testing. Demonstrate reading data from XL file
package com.pragmatic.selenium.examples;
import io.github.bonigarcia.wdm.WebDriverManager;
import org.apache.poi.ss.usermodel.Row;
import org.apache.poi.xssf.usermodel.XSSFRow;
import org.apache.poi.xssf.usermodel.XSSFSheet;
import org.apache.poi.xssf.usermodel.XSSFWorkbook;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.chrome.ChromeDriver;
@pragmatictesters
pragmatictesters / AddEmployeeTest.java
Created December 29, 2018 14:44
Selenium WebDriver Examples : Working with basic web elements
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 / ReadDataFromCSV.java
Created December 31, 2018 19:11
Selenium WebDriver Examples : Reading test data from a CSV file and use them in a test method
package com.pragmatic.selenium.examples;
import io.github.bonigarcia.wdm.WebDriverManager;
import org.apache.commons.csv.CSVFormat;
import org.apache.commons.csv.CSVRecord;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.chrome.ChromeDriver;
import org.testng.Assert;
import org.testng.annotations.*;
@pragmatictesters
pragmatictesters / MoveToElementExample.java
Created December 31, 2018 19:43
Selenium WebDriver Examples : Move , Scroll to an element using Actions class and JavascriptExecutor
package com.pragmatic.selenium.examples;
import io.github.bonigarcia.wdm.WebDriverManager;
import org.openqa.selenium.By;
import org.openqa.selenium.JavascriptExecutor;
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.annotations.AfterMethod;
@pragmatictesters
pragmatictesters / CrossBrowserTest.java
Last active January 30, 2019 03:53
Selenium WebDriver Examples : Demonstrates using various browser for the testing. All major browsers, headless browsers and Mobile Emulations are included
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.chrome.ChromeDriver;
import org.openqa.selenium.chrome.ChromeOptions;
import org.openqa.selenium.edge.EdgeDriver;
@pragmatictesters
pragmatictesters / ActionsClassExample.java
Created January 4, 2019 09:33
Selenium WebDriver Examples : Demonstrate use of Actions class to simulate user gestures
package com.pragmatic.selenium.examples;
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.openqa.selenium.interactions.Actions;
import org.testng.Assert;
@pragmatictesters
pragmatictesters / LoginTest.cs
Created March 23, 2019 17:20
Selenium WebDriver C# : Sample Tests
using Microsoft.VisualStudio.TestTools.UnitTesting;
using OpenQA.Selenium;
using OpenQA.Selenium.Chrome;
using OpenQA.Selenium.Interactions;
using OpenQA.Selenium.Support.UI;
using System;
using System.Collections.Generic;
namespace ISMDemoApplication
@pragmatictesters
pragmatictesters / LoginPage.cs
Last active March 23, 2019 17:25
Selenium WebDriver C# : Login Page
using OpenQA.Selenium;
using OpenQA.Selenium.Support.PageObjects;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ISMDemoApplication
{