
com.shaft.gui.browser.BrowserFactory Maven / Gradle / Ivy
package com.shaft.gui.browser;
import com.google.common.collect.ImmutableMap;
import com.shaft.cli.FileActions;
import com.shaft.gui.element.JavaScriptWaitManager;
import com.shaft.tools.io.PropertyFileManager;
import com.shaft.tools.io.ReportManager;
import io.appium.java_client.AppiumDriver;
import io.appium.java_client.MobileElement;
import io.github.bonigarcia.wdm.WebDriverManager;
import org.openqa.selenium.*;
import org.openqa.selenium.chrome.ChromeDriver;
import org.openqa.selenium.chrome.ChromeOptions;
import org.openqa.selenium.edge.EdgeDriver;
import org.openqa.selenium.edge.EdgeOptions;
import org.openqa.selenium.firefox.FirefoxDriver;
import org.openqa.selenium.firefox.FirefoxOptions;
import org.openqa.selenium.firefox.FirefoxProfile;
import org.openqa.selenium.ie.InternetExplorerDriver;
import org.openqa.selenium.ie.InternetExplorerOptions;
import org.openqa.selenium.logging.LogEntry;
import org.openqa.selenium.logging.LogType;
import org.openqa.selenium.logging.LoggingPreferences;
import org.openqa.selenium.remote.*;
import org.openqa.selenium.safari.SafariDriver;
import org.openqa.selenium.safari.SafariOptions;
import org.sikuli.script.App;
import org.testng.Assert;
import java.net.MalformedURLException;
import java.net.URL;
import java.util.Arrays;
import java.util.HashMap;
import java.util.Map;
import java.util.Map.Entry;
import java.util.concurrent.TimeUnit;
import java.util.logging.Level;
public class BrowserFactory {
// TODO: implement pass and fail actions to enable initial factory method screenshot and append it to animated GIF
private static final Map> drivers = new HashMap<>();
private static Boolean AUTO_MAXIMIZE;
private static Boolean HEADLESS_EXECUTION;
private static String EXECUTION_ADDRESS;
// local OR hub ip:port
private static String TARGET_HUB_URL;
// Windows-64 | Linux-64 | Mac-64
private static String TARGET_BROWSER_NAME;
// Default | MozillaFirefox | MicrosoftInternetExplorer | GoogleChrome |
// MicrosoftEdge | Safari
private static String TARGET_PLATFORM_NAME;
private static String TARGET_PLATFORM_BROWSER_NAME;
private static String WEBDRIVERMANAGER_MESSAGE = "Identifying OS/Browser combination and selecting the correct driver version automatically. Please note that if a new driver executable will be downloaded it may take some time...";
private static int PAGE_LOAD_TIMEOUT;
private static int SCRIPT_TIMEOUT;
private static int IMPLICIT_WAIT_TIMEOUT;
private static Boolean WAIT_IMPLICITLY;
private static Boolean BROWSEROBJECTSINGLETON;
private static String customDriverPath;
private static String customDriverName;
private static String targetOperatingSystem;
// browser,
private static ThreadLocal driver = new ThreadLocal<>();
// logging preferences object
private static LoggingPreferences logPrefs;
// supported browser options
private static ChromeOptions chOptions;
private static FirefoxOptions ffOptions;
private static SafariOptions sfOptions;
private static EdgeOptions edOptions;
private static InternetExplorerOptions ieOptions;
// kill-switch
private static boolean killSwitch = false;
private BrowserFactory() {
throw new IllegalStateException("Utility class");
}
public static boolean isWebExecution() {
return !isMobileExecution();
}
public static boolean isMobileExecution() {
if (EXECUTION_ADDRESS != null && !"local".equals(EXECUTION_ADDRESS) && TARGET_PLATFORM_NAME != null) {
return !"".equals(TARGET_PLATFORM_NAME);
}
return false;
}
public static boolean isMobileWebExecution() {
if (EXECUTION_ADDRESS != null && !"local".equals(EXECUTION_ADDRESS) && TARGET_PLATFORM_NAME != null
&& TARGET_PLATFORM_BROWSER_NAME != null) {
return !"".equals(TARGET_PLATFORM_NAME) && !"".equals(TARGET_PLATFORM_BROWSER_NAME);
}
return false;
}
public static boolean isMobileNativeExecution() {
if (EXECUTION_ADDRESS != null && !"local".equals(EXECUTION_ADDRESS) && TARGET_PLATFORM_NAME != null) {
return !"".equals(TARGET_PLATFORM_NAME)
&& (TARGET_PLATFORM_BROWSER_NAME == null || "".equals(TARGET_PLATFORM_BROWSER_NAME));
}
return false;
}
/**
* Read the target browser value from the execution.properties file
*
* @return a new browser instance
*/
public static WebDriver getBrowser() {
return getBrowser(TARGET_BROWSER_NAME, null);
}
/**
* Creates a new browser instance
*
* @param browserType one of the supported browser types
* @return a new browser instance
*/
public static WebDriver getBrowser(BrowserType browserType) {
return getBrowser(browserType.getValue(), null);
}
public static WebDriver getBrowser(BrowserType browserType, MutableCapabilities customBrowserOptions) {
return getBrowser(browserType.getValue(), customBrowserOptions);
}
/**
* Attaches your SikuliActions to a specific Application instance
*
* @param applicationName the name or partial name of the currently opened application window that you want to attach to
* @return a sikuli App instance that can be used to perform SikuliActions
*/
public static App getSikuliApp(String applicationName) {
initializeSystemProperties(System.getProperty("targetBrowserName") == null);
App myapp = new App(applicationName);
myapp.waitForWindow(Integer.parseInt(System.getProperty("browserNavigationTimeout")));
myapp.focus();
ReportManager.log("Opened app: [" + myapp.getName() + "]...");
return myapp;
}
/**
* Terminates the desired sikuli app instance
*
* @param application a sikuli App instance that can be used to perform SikuliActions
*/
public static void closeSikuliApp(App application) {
ReportManager.log("Closing app: [" + application.getName() + "]...");
application.close();
}
/**
* Close all open browser instances.
*/
public static synchronized void closeAllDrivers() {
if (!drivers.entrySet().isEmpty()) {
for (Entry> entry : drivers.entrySet()) {
for (Entry driverEntry : entry.getValue().entrySet()) {
WebDriver targetDriver = driverEntry.getValue();
if (((RemoteWebDriver) targetDriver).getSessionId() != null) {
attachWebDriverLogs(targetDriver);
attemptToCloseOrQuitBrowser(targetDriver, false);
attemptToCloseOrQuitBrowser(targetDriver, true);
}
}
}
driver = new ThreadLocal<>();
drivers.clear();
ReportManager.log("Successfully Closed All Browsers.");
}
}
public static Boolean isBrowsersListEmpty() {
return drivers.entrySet().isEmpty();
}
public static int getActiveDriverSessions() {
return drivers.entrySet().size();
}
public static boolean isKillSwitch() {
return killSwitch;
}
protected static synchronized void closeDriver(int hashCode) {
if (!drivers.entrySet().isEmpty()) {
for (Entry> entry : drivers.entrySet()) {
if (entry.getKey().contains(String.valueOf(hashCode))) {
WebDriver targetDriver = entry.getValue().get(targetOperatingSystem);
attachWebDriverLogs(targetDriver);
//attemptToCloseOrQuitBrowser(targetDriver, false);
attemptToCloseOrQuitBrowser(targetDriver, true);
}
}
}
}
private static void failAction(String testData, Throwable... rootCauseException) {
String actionName = Thread.currentThread().getStackTrace()[2].getMethodName();
String message = "Browser Factory Action [" + actionName + "] failed.";
if (testData != null) {
message = message + " With the following test data [" + testData + "].";
}
ReportManager.log(message);
if (rootCauseException != null && rootCauseException.length >= 1) {
ReportManager.log(rootCauseException[0]);
Assert.fail(message, rootCauseException[0]);
} else {
Assert.fail(message);
}
}
private static BrowserType getBrowserTypeFromName(String browserName) {
int values = BrowserType.values().length;
for (int i = 0; i < values; i++) {
if (Arrays.asList(BrowserType.values()).get(i).getValue().equalsIgnoreCase(browserName.trim())) {
return Arrays.asList(BrowserType.values()).get(i);
}
}
failAction("Unsupported Browser Type [" + browserName + "].");
return BrowserType.GOOGLE_CHROME;
}
private static OperatingSystemType getOperatingSystemFromName(String operatingSystemName) {
int values = OperatingSystemType.values().length;
for (int i = 0; i < values; i++) {
if (Arrays.asList(OperatingSystemType.values()).get(i).getValue()
.equalsIgnoreCase(operatingSystemName.trim())) {
return Arrays.asList(OperatingSystemType.values()).get(i);
}
}
failAction("Unsupported Operating System [" + targetOperatingSystem + "].");
return OperatingSystemType.LINUX;
}
/**
* Check cross-compatibility between the selected operating system and browser
* and report in case they are not compatible
*/
private static void checkBrowserOSCrossCompatibility(String browserName) {
boolean isCompatibleBrowser = false;
BrowserType browserType = getBrowserTypeFromName(browserName);
if (isMobileExecution()) {
targetOperatingSystem = System.getProperty("mobile_platformName");
}
OperatingSystemType operatingSystem = getOperatingSystemFromName(targetOperatingSystem);
switch (operatingSystem) {
case WINDOWS:
if (browserType.equals(BrowserType.MOZILLA_FIREFOX) || browserType.equals(BrowserType.GOOGLE_CHROME)
|| browserType.equals(BrowserType.MICROSOFT_IE) || browserType.equals(BrowserType.MICROSOFT_EDGE)) {
isCompatibleBrowser = true;
}
break;
case LINUX:
if (browserType.equals(BrowserType.MOZILLA_FIREFOX) || browserType.equals(BrowserType.GOOGLE_CHROME)) {
isCompatibleBrowser = true;
}
break;
case MACOS:
if (browserType.equals(BrowserType.MOZILLA_FIREFOX) || browserType.equals(BrowserType.GOOGLE_CHROME)
|| browserType.equals(BrowserType.APPLE_SAFARI)) {
isCompatibleBrowser = true;
}
break;
case ANDROID:
if (browserType.equals(BrowserType.MOBILE_CHROME) || browserType.equals(BrowserType.MOBILE_CHROMIUM)
|| browserType.equals(BrowserType.MOBILE_BROWSER)) {
isCompatibleBrowser = true;
}
break;
case IOS:
if (browserType.equals(BrowserType.APPLE_SAFARI)) {
isCompatibleBrowser = true;
}
break;
case FIREFOXOS:
// TODO: expected to fail > false positive
isCompatibleBrowser = true;
break;
default:
failAction("Unsupported Operating System [" + targetOperatingSystem + "].");
break;
}
if (Boolean.FALSE.equals(isCompatibleBrowser)) {
failAction("Unsupported Browser Type [" + browserType + "] for this Operating System ["
+ targetOperatingSystem + "].");
}
}
private static String setDriversExtecutableFileExtension() {
OperatingSystemType operatingSystem = getOperatingSystemFromName(targetOperatingSystem);
if (operatingSystem.equals(OperatingSystemType.WINDOWS)) {
return ".exe";
} else {
return "";
}
}
private static void setLoggingPrefrences() {
logPrefs = new LoggingPreferences();
logPrefs.enable(LogType.CLIENT, Level.ALL);
logPrefs.enable(LogType.PROFILER, Level.ALL);
logPrefs.enable(LogType.SERVER, Level.ALL);
logPrefs.enable(LogType.PERFORMANCE, Level.ALL);
logPrefs.enable(LogType.BROWSER, Level.ALL);
logPrefs.enable(LogType.DRIVER, Level.ALL);
}
private static void setDriverOptions(String browserName, MutableCapabilities customBrowserOptions) {
String downloadsFolderPath = FileActions.getAbsolutePath(System.getProperty("downloadsFolderPath"));
BrowserType browserType = getBrowserTypeFromName(browserName);
switch (browserType) {
case MOZILLA_FIREFOX:
if (customBrowserOptions != null) {
ffOptions = (FirefoxOptions) customBrowserOptions;
} else {
ffOptions = new FirefoxOptions();
ffOptions.setCapability(CapabilityType.PLATFORM_NAME, getDesiredOperatingSystem());
ffOptions.setCapability(CapabilityType.HAS_NATIVE_EVENTS, true);
ffOptions.setCapability(CapabilityType.LOGGING_PREFS, logPrefs);
if (Boolean.TRUE.equals(HEADLESS_EXECUTION)) {
// https://developer.mozilla.org/en-US/docs/Mozilla/Firefox/Headless_mode
ffOptions.addArguments("-headless");
}
ffOptions.addArguments("-foreground");
FirefoxProfile ffProfile = new FirefoxProfile();
ffProfile.setPreference("browser.download.dir", downloadsFolderPath);
ffProfile.setPreference("browser.download.folderList", 2);
ffProfile.setPreference("browser.helperApps.neverAsk.saveToDisk",
"application/vnd.hzn-3d-crossword;video/3gpp;video/3gpp2;application/vnd.mseq;application/vnd.3m.post-it-notes;application/vnd.3gpp.pic-bw-large;application/vnd.3gpp.pic-bw-small;application/vnd.3gpp.pic-bw-var;application/vnd.3gp2.tcap;application/x-7z-compressed;application/x-abiword;application/x-ace-compressed;application/vnd.americandynamics.acc;application/vnd.acucobol;application/vnd.acucorp;audio/adpcm;application/x-authorware-bin;application/x-athorware-map;application/x-authorware-seg;application/vnd.adobe.air-application-installer-package+zip;application/x-shockwave-flash;application/vnd.adobe.fxp;application/pdf;application/vnd.cups-ppd;application/x-director;applicaion/vnd.adobe.xdp+xml;application/vnd.adobe.xfdf;audio/x-aac;application/vnd.ahead.space;application/vnd.airzip.filesecure.azf;application/vnd.airzip.filesecure.azs;application/vnd.amazon.ebook;application/vnd.amiga.ami;applicatin/andrew-inset;application/vnd.android.package-archive;application/vnd.anser-web-certificate-issue-initiation;application/vnd.anser-web-funds-transfer-initiation;application/vnd.antix.game-component;application/vnd.apple.installe+xml;application/applixware;application/vnd.hhe.lesson-player;application/vnd.aristanetworks.swi;text/x-asm;application/atomcat+xml;application/atomsvc+xml;application/atom+xml;application/pkix-attr-cert;audio/x-aiff;video/x-msvieo;application/vnd.audiograph;image/vnd.dxf;model/vnd.dwf;text/plain-bas;application/x-bcpio;application/octet-stream;image/bmp;application/x-bittorrent;application/vnd.rim.cod;application/vnd.blueice.multipass;application/vnd.bm;application/x-sh;image/prs.btif;application/vnd.businessobjects;application/x-bzip;application/x-bzip2;application/x-csh;text/x-c;application/vnd.chemdraw+xml;text/css;chemical/x-cdx;chemical/x-cml;chemical/x-csml;application/vn.contact.cmsg;application/vnd.claymore;application/vnd.clonk.c4group;image/vnd.dvb.subtitle;application/cdmi-capability;application/cdmi-container;application/cdmi-domain;application/cdmi-object;application/cdmi-queue;applicationvnd.cluetrust.cartomobile-config;application/vnd.cluetrust.cartomobile-config-pkg;image/x-cmu-raster;model/vnd.collada+xml;text/csv;application/mac-compactpro;application/vnd.wap.wmlc;image/cgm;x-conference/x-cooltalk;image/x-cmx;application/vnd.xara;application/vnd.cosmocaller;application/x-cpio;application/vnd.crick.clicker;application/vnd.crick.clicker.keyboard;application/vnd.crick.clicker.palette;application/vnd.crick.clicker.template;application/vn.crick.clicker.wordbank;application/vnd.criticaltools.wbs+xml;application/vnd.rig.cryptonote;chemical/x-cif;chemical/x-cmdf;application/cu-seeme;application/prs.cww;text/vnd.curl;text/vnd.curl.dcurl;text/vnd.curl.mcurl;text/vnd.crl.scurl;application/vnd.curl.car;application/vnd.curl.pcurl;application/vnd.yellowriver-custom-menu;application/dssc+der;application/dssc+xml;application/x-debian-package;audio/vnd.dece.audio;image/vnd.dece.graphic;video/vnd.dec.hd;video/vnd.dece.mobile;video/vnd.uvvu.mp4;video/vnd.dece.pd;video/vnd.dece.sd;video/vnd.dece.video;application/x-dvi;application/vnd.fdsn.seed;application/x-dtbook+xml;application/x-dtbresource+xml;application/vnd.dvb.ait;applcation/vnd.dvb.service;audio/vnd.digital-winds;image/vnd.djvu;application/xml-dtd;application/vnd.dolby.mlp;application/x-doom;application/vnd.dpgraph;audio/vnd.dra;application/vnd.dreamfactory;audio/vnd.dts;audio/vnd.dts.hd;imag/vnd.dwg;application/vnd.dynageo;application/ecmascript;application/vnd.ecowin.chart;image/vnd.fujixerox.edmics-mmr;image/vnd.fujixerox.edmics-rlc;application/exi;application/vnd.proteus.magazine;application/epub+zip;message/rfc82;application/vnd.enliven;application/vnd.is-xpr;image/vnd.xiff;application/vnd.xfdl;application/emma+xml;application/vnd.ezpix-album;application/vnd.ezpix-package;image/vnd.fst;video/vnd.fvt;image/vnd.fastbidsheet;application/vn.denovo.fcselayout-link;video/x-f4v;video/x-flv;image/vnd.fpx;image/vnd.net-fpx;text/vnd.fmi.flexstor;video/x-fli;application/vnd.fluxtime.clip;application/vnd.fdf;text/x-fortran;application/vnd.mif;application/vnd.framemaker;imae/x-freehand;application/vnd.fsc.weblaunch;application/vnd.frogans.fnc;application/vnd.frogans.ltf;application/vnd.fujixerox.ddd;application/vnd.fujixerox.docuworks;application/vnd.fujixerox.docuworks.binder;application/vnd.fujitu.oasys;application/vnd.fujitsu.oasys2;application/vnd.fujitsu.oasys3;application/vnd.fujitsu.oasysgp;application/vnd.fujitsu.oasysprs;application/x-futuresplash;application/vnd.fuzzysheet;image/g3fax;application/vnd.gmx;model/vn.gtw;application/vnd.genomatix.tuxedo;application/vnd.geogebra.file;application/vnd.geogebra.tool;model/vnd.gdl;application/vnd.geometry-explorer;application/vnd.geonext;application/vnd.geoplan;application/vnd.geospace;applicatio/x-font-ghostscript;application/x-font-bdf;application/x-gtar;application/x-texinfo;application/x-gnumeric;application/vnd.google-earth.kml+xml;application/vnd.google-earth.kmz;application/vnd.grafeq;image/gif;text/vnd.graphviz;aplication/vnd.groove-account;application/vnd.groove-help;application/vnd.groove-identity-message;application/vnd.groove-injector;application/vnd.groove-tool-message;application/vnd.groove-tool-template;application/vnd.groove-vcar;video/h261;video/h263;video/h264;application/vnd.hp-hpid;application/vnd.hp-hps;application/x-hdf;audio/vnd.rip;application/vnd.hbci;application/vnd.hp-jlyt;application/vnd.hp-pcl;application/vnd.hp-hpgl;application/vnd.yamaha.h-script;application/vnd.yamaha.hv-dic;application/vnd.yamaha.hv-voice;application/vnd.hydrostatix.sof-data;application/hyperstudio;application/vnd.hal+xml;text/html;application/vnd.ibm.rights-management;application/vnd.ibm.securecontainer;text/calendar;application/vnd.iccprofile;image/x-icon;application/vnd.igloader;image/ief;application/vnd.immervision-ivp;application/vnd.immervision-ivu;application/reginfo+xml;text/vnd.in3d.3dml;text/vnd.in3d.spot;mode/iges;application/vnd.intergeo;application/vnd.cinderella;application/vnd.intercon.formnet;application/vnd.isac.fcs;application/ipfix;application/pkix-cert;application/pkixcmp;application/pkix-crl;application/pkix-pkipath;applicaion/vnd.insors.igm;application/vnd.ipunplugged.rcprofile;application/vnd.irepository.package+xml;text/vnd.sun.j2me.app-descriptor;application/java-archive;application/java-vm;application/x-java-jnlp-file;application/java-serializd-object;text/x-java-source,java;application/javascript;application/json;application/vnd.joost.joda-archive;video/jpm;image/jpeg;video/jpeg;application/vnd.kahootz;application/vnd.chipnuts.karaoke-mmd;application/vnd.kde.karbon;aplication/vnd.kde.kchart;application/vnd.kde.kformula;application/vnd.kde.kivio;application/vnd.kde.kontour;application/vnd.kde.kpresenter;application/vnd.kde.kspread;application/vnd.kde.kword;application/vnd.kenameaapp;applicatin/vnd.kidspiration;application/vnd.kinar;application/vnd.kodak-descriptor;application/vnd.las.las+xml;application/x-latex;application/vnd.llamagraphics.life-balance.desktop;application/vnd.llamagraphics.life-balance.exchange+xml;application/vnd.jam;application/vnd.lotus-1-2-3;application/vnd.lotus-approach;application/vnd.lotus-freelance;application/vnd.lotus-notes;application/vnd.lotus-organizer;application/vnd.lotus-screencam;application/vnd.lotus-wordro;audio/vnd.lucent.voice;audio/x-mpegurl;video/x-m4v;application/mac-binhex40;application/vnd.macports.portpkg;application/vnd.osgeo.mapguide.package;application/marc;application/marcxml+xml;application/mxf;application/vnd.wolfrm.player;application/mathematica;application/mathml+xml;application/mbox;application/vnd.medcalcdata;application/mediaservercontrol+xml;application/vnd.mediastation.cdkey;application/vnd.mfer;application/vnd.mfmp;model/mesh;appliation/mads+xml;application/mets+xml;application/mods+xml;application/metalink4+xml;application/vnd.ms-powerpoint.template.macroenabled.12;application/vnd.ms-word.document.macroenabled.12;application/vnd.ms-word.template.macroenabed.12;application/vnd.mcd;application/vnd.micrografx.flo;application/vnd.micrografx.igx;application/vnd.eszigno3+xml;application/x-msaccess;video/x-ms-asf;application/x-msdownload;application/vnd.ms-artgalry;application/vnd.ms-ca-compressed;application/vnd.ms-ims;application/x-ms-application;application/x-msclip;image/vnd.ms-modi;application/vnd.ms-fontobject;application/vnd.ms-excel;application/vnd.ms-excel.addin.macroenabled.12;application/vnd.ms-excelsheet.binary.macroenabled.12;application/vnd.ms-excel.template.macroenabled.12;application/vnd.ms-excel.sheet.macroenabled.12;application/vnd.ms-htmlhelp;application/x-mscardfile;application/vnd.ms-lrm;application/x-msmediaview;aplication/x-msmoney;application/vnd.openxmlformats-officedocument.presentationml.presentation;application/vnd.openxmlformats-officedocument.presentationml.slide;application/vnd.openxmlformats-officedocument.presentationml.slideshw;application/vnd.openxmlformats-officedocument.presentationml.template;application/vnd.openxmlformats-officedocument.spreadsheetml.sheet;application/vnd.openxmlformats-officedocument.spreadsheetml.template;application/vnd.openxmformats-officedocument.wordprocessingml.document;application/vnd.openxmlformats-officedocument.wordprocessingml.template;application/x-msbinder;application/vnd.ms-officetheme;application/onenote;audio/vnd.ms-playready.media.pya;vdeo/vnd.ms-playready.media.pyv;application/vnd.ms-powerpoint;application/vnd.ms-powerpoint.addin.macroenabled.12;application/vnd.ms-powerpoint.slide.macroenabled.12;application/vnd.ms-powerpoint.presentation.macroenabled.12;appliation/vnd.ms-powerpoint.slideshow.macroenabled.12;application/vnd.ms-project;application/x-mspublisher;application/x-msschedule;application/x-silverlight-app;application/vnd.ms-pki.stl;application/vnd.ms-pki.seccat;application/vn.visio;video/x-ms-wm;audio/x-ms-wma;audio/x-ms-wax;video/x-ms-wmx;application/x-ms-wmd;application/vnd.ms-wpl;application/x-ms-wmz;video/x-ms-wmv;video/x-ms-wvx;application/x-msmetafile;application/x-msterminal;application/msword;application/x-mswrite;application/vnd.ms-works;application/x-ms-xbap;application/vnd.ms-xpsdocument;audio/midi;application/vnd.ibm.minipay;application/vnd.ibm.modcap;application/vnd.jcp.javame.midlet-rms;application/vnd.tmobile-ivetv;application/x-mobipocket-ebook;application/vnd.mobius.mbk;application/vnd.mobius.dis;application/vnd.mobius.plc;application/vnd.mobius.mqy;application/vnd.mobius.msl;application/vnd.mobius.txf;application/vnd.mobius.daf;tex/vnd.fly;application/vnd.mophun.certificate;application/vnd.mophun.application;video/mj2;audio/mpeg;video/vnd.mpegurl;video/mpeg;application/mp21;audio/mp4;video/mp4;application/mp4;application/vnd.apple.mpegurl;application/vnd.msician;application/vnd.muvee.style;application/xv+xml;application/vnd.nokia.n-gage.data;application/vnd.nokia.n-gage.symbian.install;application/x-dtbncx+xml;application/x-netcdf;application/vnd.neurolanguage.nlu;application/vnd.na;application/vnd.noblenet-directory;application/vnd.noblenet-sealer;application/vnd.noblenet-web;application/vnd.nokia.radio-preset;application/vnd.nokia.radio-presets;text/n3;application/vnd.novadigm.edm;application/vnd.novadim.edx;application/vnd.novadigm.ext;application/vnd.flographit;audio/vnd.nuera.ecelp4800;audio/vnd.nuera.ecelp7470;audio/vnd.nuera.ecelp9600;application/oda;application/ogg;audio/ogg;video/ogg;application/vnd.oma.dd2+xml;applicatin/vnd.oasis.opendocument.text-web;application/oebps-package+xml;application/vnd.intu.qbo;application/vnd.openofficeorg.extension;application/vnd.yamaha.openscoreformat;audio/webm;video/webm;application/vnd.oasis.opendocument.char;application/vnd.oasis.opendocument.chart-template;application/vnd.oasis.opendocument.database;application/vnd.oasis.opendocument.formula;application/vnd.oasis.opendocument.formula-template;application/vnd.oasis.opendocument.grapics;application/vnd.oasis.opendocument.graphics-template;application/vnd.oasis.opendocument.image;application/vnd.oasis.opendocument.image-template;application/vnd.oasis.opendocument.presentation;application/vnd.oasis.opendocumen.presentation-template;application/vnd.oasis.opendocument.spreadsheet;application/vnd.oasis.opendocument.spreadsheet-template;application/vnd.oasis.opendocument.text;application/vnd.oasis.opendocument.text-master;application/vnd.asis.opendocument.text-template;image/ktx;application/vnd.sun.xml.calc;application/vnd.sun.xml.calc.template;application/vnd.sun.xml.draw;application/vnd.sun.xml.draw.template;application/vnd.sun.xml.impress;application/vnd.sun.xl.impress.template;application/vnd.sun.xml.math;application/vnd.sun.xml.writer;application/vnd.sun.xml.writer.global;application/vnd.sun.xml.writer.template;application/x-font-otf;application/vnd.yamaha.openscoreformat.osfpvg+xml;application/vnd.osgi.dp;application/vnd.palm;text/x-pascal;application/vnd.pawaafile;application/vnd.hp-pclxl;application/vnd.picsel;image/x-pcx;image/vnd.adobe.photoshop;application/pics-rules;image/x-pict;application/x-chat;aplication/pkcs10;application/x-pkcs12;application/pkcs7-mime;application/pkcs7-signature;application/x-pkcs7-certreqresp;application/x-pkcs7-certificates;application/pkcs8;application/vnd.pocketlearn;image/x-portable-anymap;image/-portable-bitmap;application/x-font-pcf;application/font-tdpfr;application/x-chess-pgn;image/x-portable-graymap;image/png;image/x-portable-pixmap;application/pskc+xml;application/vnd.ctc-posml;application/postscript;application/xfont-type1;application/vnd.powerbuilder6;application/pgp-encrypted;application/pgp-signature;application/vnd.previewsystems.box;application/vnd.pvi.ptid1;application/pls+xml;application/vnd.pg.format;application/vnd.pg.osasli;tex/prs.lines.tag;application/x-font-linux-psf;application/vnd.publishare-delta-tree;application/vnd.pmi.widget;application/vnd.quark.quarkxpress;application/vnd.epson.esf;application/vnd.epson.msf;application/vnd.epson.ssf;applicaton/vnd.epson.quickanime;application/vnd.intu.qfx;video/quicktime;application/x-rar-compressed;audio/x-pn-realaudio;audio/x-pn-realaudio-plugin;application/rsd+xml;application/vnd.rn-realmedia;application/vnd.realvnc.bed;applicatin/vnd.recordare.musicxml;application/vnd.recordare.musicxml+xml;application/relax-ng-compact-syntax;application/vnd.data-vision.rdz;application/rdf+xml;application/vnd.cloanto.rp9;application/vnd.jisp;application/rtf;text/richtex;application/vnd.route66.link66+xml;application/rss+xml;application/shf+xml;application/vnd.sailingtracker.track;image/svg+xml;application/vnd.sus-calendar;application/sru+xml;application/set-payment-initiation;application/set-reistration-initiation;application/vnd.sema;application/vnd.semd;application/vnd.semf;application/vnd.seemail;application/x-font-snf;application/scvp-vp-request;application/scvp-vp-response;application/scvp-cv-request;application/svp-cv-response;application/sdp;text/x-setext;video/x-sgi-movie;application/vnd.shana.informed.formdata;application/vnd.shana.informed.formtemplate;application/vnd.shana.informed.interchange;application/vnd.shana.informed.package;application/thraud+xml;application/x-shar;image/x-rgb;application/vnd.epson.salt;application/vnd.accpac.simply.aso;application/vnd.accpac.simply.imp;application/vnd.simtech-mindmapper;application/vnd.commonspace;application/vnd.ymaha.smaf-audio;application/vnd.smaf;application/vnd.yamaha.smaf-phrase;application/vnd.smart.teacher;application/vnd.svd;application/sparql-query;application/sparql-results+xml;application/srgs;application/srgs+xml;application/sml+xml;application/vnd.koan;text/sgml;application/vnd.stardivision.calc;application/vnd.stardivision.draw;application/vnd.stardivision.impress;application/vnd.stardivision.math;application/vnd.stardivision.writer;application/vnd.tardivision.writer-global;application/vnd.stepmania.stepchart;application/x-stuffit;application/x-stuffitx;application/vnd.solent.sdkm+xml;application/vnd.olpc-sugar;audio/basic;application/vnd.wqd;application/vnd.symbian.install;application/smil+xml;application/vnd.syncml+xml;application/vnd.syncml.dm+wbxml;application/vnd.syncml.dm+xml;application/x-sv4cpio;application/x-sv4crc;application/sbml+xml;text/tab-separated-values;image/tiff;application/vnd.to.intent-module-archive;application/x-tar;application/x-tcl;application/x-tex;application/x-tex-tfm;application/tei+xml;text/plain;application/vnd.spotfire.dxp;application/vnd.spotfire.sfs;application/timestamped-data;applicationvnd.trid.tpt;application/vnd.triscape.mxs;text/troff;application/vnd.trueapp;application/x-font-ttf;text/turtle;application/vnd.umajin;application/vnd.uoml+xml;application/vnd.unity;application/vnd.ufdl;text/uri-list;application/nd.uiq.theme;application/x-ustar;text/x-uuencode;text/x-vcalendar;text/x-vcard;application/x-cdlink;application/vnd.vsf;model/vrml;application/vnd.vcx;model/vnd.mts;model/vnd.vtu;application/vnd.visionary;video/vnd.vivo;applicatin/ccxml+xml,;application/voicexml+xml;application/x-wais-source;application/vnd.wap.wbxml;image/vnd.wap.wbmp;audio/x-wav;application/davmount+xml;application/x-font-woff;application/wspolicy+xml;image/webp;application/vnd.webturb;application/widget;application/winhlp;text/vnd.wap.wml;text/vnd.wap.wmlscript;application/vnd.wap.wmlscriptc;application/vnd.wordperfect;application/vnd.wt.stf;application/wsdl+xml;image/x-xbitmap;image/x-xpixmap;image/x-xwindowump;application/x-x509-ca-cert;application/x-xfig;application/xhtml+xml;application/xml;application/xcap-diff+xml;application/xenc+xml;application/patch-ops-error+xml;application/resource-lists+xml;application/rls-services+xml;aplication/resource-lists-diff+xml;application/xslt+xml;application/xop+xml;application/x-xpinstall;application/xspf+xml;application/vnd.mozilla.xul+xml;chemical/x-xyz;text/yaml;application/yang;application/yin+xml;application/vnd.ul;application/zip;application/vnd.handheld-entertainment+xml;application/vnd.zzazz.deck+xml");
ffOptions.setProfile(ffProfile);
}
break;
case MICROSOFT_IE:
if (customBrowserOptions != null) {
ieOptions = (InternetExplorerOptions) customBrowserOptions;
} else {
ieOptions = new InternetExplorerOptions();
ieOptions.setCapability(CapabilityType.PLATFORM_NAME, getDesiredOperatingSystem());
ieOptions.setCapability(CapabilityType.LOGGING_PREFS, logPrefs);
}
break;
case MOBILE_CHROME:
case GOOGLE_CHROME:
if (customBrowserOptions != null) {
chOptions = (ChromeOptions) customBrowserOptions;
} else {
chOptions = new ChromeOptions();
chOptions.setCapability(CapabilityType.PLATFORM_NAME, getDesiredOperatingSystem());
chOptions.setHeadless(HEADLESS_EXECUTION);
if (Boolean.TRUE.equals(HEADLESS_EXECUTION)) {
// https://developers.google.com/web/updates/2017/04/headless-chrome
chOptions.addArguments("--headless"); // only if you are ACTUALLY running headless
}
if (Boolean.TRUE.equals(AUTO_MAXIMIZE) && !isMobileWebExecution() && !OperatingSystemType.MACOS.equals(getOperatingSystemFromName(targetOperatingSystem))) {
chOptions.addArguments("--start-maximized");
}
chOptions.setCapability(CapabilityType.LOGGING_PREFS, logPrefs);
chOptions.setPageLoadStrategy(PageLoadStrategy.NORMAL); // https://www.skptricks.com/2018/08/timed-out-receiving-message-from-renderer-selenium.html
// chOptions.addArguments("enable-automation"); // https://stackoverflow.com/a/43840128/1689770
chOptions.addArguments("--enable-automation"); // https://stackoverflow.com/a/43840128/1689770
chOptions.addArguments("--no-sandbox"); //https://stackoverflow.com/a/50725918/1689770
chOptions.addArguments("--disable-infobars"); //https://stackoverflow.com/a/43840128/1689770
chOptions.addArguments("--disable-dev-shm-usage"); //https://stackoverflow.com/a/50725918/1689770
chOptions.addArguments("--disable-browser-side-navigation"); //https://stackoverflow.com/a/49123152/1689770
chOptions.addArguments("--disable-gpu"); //https://stackoverflow.com/questions/51959986/how-to-solve-selenium-chromedriver-timed-out-receiving-message-from-renderer-exc
//chOptions.setExperimentalOption("excludeSwitches", new String[]{"enable-automation"});
//https://github.com/GoogleChrome/chrome-launcher/blob/master/docs/chrome-flags-for-tools.md#--enable-automation
Map chromePreferences = new HashMap<>();
chromePreferences.put("profile.default_content_settings.popups", 0);
chromePreferences.put("download.prompt_for_download", "false");
chromePreferences.put("download.default_directory", downloadsFolderPath);
chOptions.setExperimentalOption("prefs", chromePreferences);
chOptions.setExperimentalOption("w3c", false);
}
break;
case MICROSOFT_EDGE:
if (customBrowserOptions != null) {
edOptions = (EdgeOptions) customBrowserOptions;
} else {
edOptions = new EdgeOptions();
edOptions.setCapability(CapabilityType.PLATFORM_NAME, getDesiredOperatingSystem());
edOptions.setCapability(CapabilityType.LOGGING_PREFS, logPrefs);
}
break;
case APPLE_SAFARI:
if (customBrowserOptions != null) {
sfOptions = (SafariOptions) customBrowserOptions;
} else {
sfOptions = new SafariOptions();
sfOptions.setCapability(CapabilityType.PLATFORM_NAME, getDesiredOperatingSystem());
sfOptions.setCapability(CapabilityType.LOGGING_PREFS, logPrefs);
sfOptions.setCapability("safari.options.dataDir", downloadsFolderPath);
}
break;
default:
failAction("Unsupported Browser Type [" + browserName + "].");
break;
}
}
private static void createNewLocalDriverInstanceForFirefox() {
if (!"".equals(customDriverName) && !"".equals(customDriverPath)) {
System.setProperty("webdriver.gecko.driver",
customDriverPath + customDriverName + setDriversExtecutableFileExtension());
} else {
ReportManager.log(WEBDRIVERMANAGER_MESSAGE);
WebDriverManager.firefoxdriver().setup();
}
driver.set(new FirefoxDriver(ffOptions));
storeDriverInstance(BrowserType.MOZILLA_FIREFOX.getValue());
ReportManager.log("Successfully Opened Mozilla Firefox.");
}
private static void createNewLocalDriverInstanceForInternetExplorer() {
if (!customDriverName.equals("") && !customDriverPath.equals("")) {
System.setProperty("webdriver.ie.driver",
customDriverPath + customDriverName + setDriversExtecutableFileExtension());
} else {
ReportManager.log(WEBDRIVERMANAGER_MESSAGE);
WebDriverManager.iedriver().setup();
}
driver.set(new InternetExplorerDriver(ieOptions));
storeDriverInstance(BrowserType.MICROSOFT_IE.getValue());
ReportManager.log("Successfully Opened Microsoft Internet Explorer.");
}
private static void createNewLocalDriverInstanceForChrome() {
if (!customDriverName.equals("") && !customDriverPath.equals("")) {
System.setProperty("webdriver.chrome.driver",
customDriverPath + customDriverName + setDriversExtecutableFileExtension());
} else {
ReportManager.log(WEBDRIVERMANAGER_MESSAGE);
WebDriverManager.chromedriver().setup();
}
driver.set(new ChromeDriver(chOptions));
storeDriverInstance(BrowserType.GOOGLE_CHROME.getValue());
ReportManager.log("Successfully Opened Google Chrome.");
}
private static void createNewLocalDriverInstanceForEdge() {
if (!customDriverName.equals("") && !customDriverPath.equals("")) {
System.setProperty("webdriver.edge.driver",
customDriverPath + customDriverName + setDriversExtecutableFileExtension());
} else {
ReportManager.log(WEBDRIVERMANAGER_MESSAGE);
WebDriverManager.edgedriver().setup();
}
driver.set(new EdgeDriver(edOptions));
storeDriverInstance(BrowserType.MICROSOFT_EDGE.getValue());
ReportManager.log("Successfully Opened Microsoft Edge.");
}
private static void createNewLocalDriverInstanceForSafari() {
try {
driver.set(new SafariDriver(sfOptions));
} catch (SessionNotCreatedException e) {
ReportManager.log(e);
failAction("Failed to create a session on" + BrowserType.APPLE_SAFARI.toString());
}
storeDriverInstance(BrowserType.APPLE_SAFARI.getValue());
ReportManager.log("Successfully Opened Safari.");
}
private static WebDriver createNewLocalDriverInstance(String browserName) {
String initialLog = "Attempting to run locally on: [" + targetOperatingSystem + "], [" + browserName + "]";
if (Boolean.TRUE.equals(HEADLESS_EXECUTION)) {
initialLog = initialLog + ", Headless Execution";
}
ReportManager.log(initialLog + ".");
BrowserType browserType = getBrowserTypeFromName(browserName);
switch (browserType) {
case MOZILLA_FIREFOX -> createNewLocalDriverInstanceForFirefox();
case MICROSOFT_IE -> createNewLocalDriverInstanceForInternetExplorer();
case GOOGLE_CHROME -> createNewLocalDriverInstanceForChrome();
case MICROSOFT_EDGE -> createNewLocalDriverInstanceForEdge();
case APPLE_SAFARI -> createNewLocalDriverInstanceForSafari();
default -> failAction("Unsupported Browser Type [" + browserName + "].");
}
return driver.get();
}
private static WebDriver createNewRemoteDriverInstance(String browserName) {
BrowserType browserType;
if (isMobileNativeExecution()) {
targetOperatingSystem = TARGET_PLATFORM_NAME;
browserType = BrowserType.MOBILE_NATIVE;
} else {
browserType = getBrowserTypeFromName(browserName);
}
StringBuilder initialLog = new StringBuilder();
initialLog.append("Attempting to run remotely on: [").append(targetOperatingSystem).append("]");
if (!isMobileNativeExecution()) {
initialLog.append(", [").append(browserName).append("]");
}
initialLog.append(", [").append(TARGET_HUB_URL).append("]");
if (Boolean.TRUE.equals(HEADLESS_EXECUTION) && !isMobileExecution()) {
initialLog.append(", Headless Execution");
}
ReportManager.log(initialLog.toString() + ".");
DesiredCapabilities mobileDesiredCapabilities = new DesiredCapabilities();
if (isMobileExecution()) {
mobileDesiredCapabilities = setAppiumDesiredCapabilitiesList();
}
try {
switch (browserType) {
case MOZILLA_FIREFOX:
driver.set(new RemoteWebDriver(new URL(TARGET_HUB_URL), ffOptions));
break;
case MICROSOFT_IE:
driver.set(new RemoteWebDriver(new URL(TARGET_HUB_URL), ieOptions));
break;
case GOOGLE_CHROME:
driver.set(new RemoteWebDriver(new URL(TARGET_HUB_URL), chOptions));
break;
case MICROSOFT_EDGE:
driver.set(new RemoteWebDriver(new URL(TARGET_HUB_URL), edOptions));
break;
case APPLE_SAFARI:
if (!isMobileExecution()) {
driver.set(new RemoteWebDriver(new URL(TARGET_HUB_URL), sfOptions));
} else {
driver.set(new AppiumDriver(new URL(TARGET_HUB_URL), mobileDesiredCapabilities));
}
break;
case MOBILE_CHROME:
ReportManager.log(WEBDRIVERMANAGER_MESSAGE);
WebDriverManager.chromedriver().browserVersion(System.getProperty("MobileBrowserVersion")).setup();
mobileDesiredCapabilities.setCapability("chromedriverExecutable",
WebDriverManager.chromedriver().getDownloadedDriverPath());
mobileDesiredCapabilities.setCapability("appium:chromeOptions", ImmutableMap.of("w3c", false));
driver.set(new AppiumDriver(new URL(TARGET_HUB_URL), mobileDesiredCapabilities));
break;
case MOBILE_CHROMIUM:
WebDriverManager.chromedriver().browserVersion(System.getProperty("MobileBrowserVersion")).setup();
mobileDesiredCapabilities.setCapability("chromedriverExecutable",
WebDriverManager.chromedriver().getDownloadedDriverPath());
driver.set(new AppiumDriver(new URL(TARGET_HUB_URL), mobileDesiredCapabilities));
break;
case MOBILE_BROWSER:
case MOBILE_NATIVE:
driver.set(new AppiumDriver(new URL(TARGET_HUB_URL), mobileDesiredCapabilities));
// will break in case of firefoxOS
break;
default:
failAction("Unsupported Browser Type [" + browserName + "].");
break;
}
ReportManager.log("Successfully Opened [" + browserName + "].");
storeDriverInstance(browserName);
((RemoteWebDriver) driver.get()).setFileDetector(new LocalFileDetector());
} catch (UnreachableBrowserException e) {
killSwitch = true;
// ReportManager.log(e);
failAction("Unreachable Browser, terminated test suite execution.", e);
} catch (WebDriverException e) {
ReportManager.log(e);
if (e.getMessage().contains("Error forwarding the new session cannot find")) {
ReportManager.log("Failed to run remotely on: [" + targetOperatingSystem + "], [" + browserName + "], ["
+ TARGET_HUB_URL + "].");
failAction(
"Error forwarding the new session: Couldn't find a node that matches the desired capabilities.", e);
} else {
ReportManager.log("Failed to run remotely on: [" + targetOperatingSystem + "], [" + browserName + "], ["
+ TARGET_HUB_URL + "].");
failAction("Unhandled Error.", e);
}
} catch (NoClassDefFoundError | MalformedURLException e) {
// ReportManager.log(e);
failAction("Failed to create Remote WebDriver instance", e);
}
return driver.get();
}
private static Platform getDesiredOperatingSystem() {
OperatingSystemType operatingSystem = getOperatingSystemFromName(targetOperatingSystem);
switch (operatingSystem) {
case WINDOWS:
return Platform.WINDOWS;
case LINUX:
return Platform.LINUX;
case MACOS:
return Platform.MAC;
default:
ReportManager.log(
"Unsupported Operating System [" + targetOperatingSystem + "], setting target platform to [ANY].");
return Platform.ANY;
}
}
private static void attemptToCloseOrQuitBrowser(WebDriver driver, boolean quit) {
try {
if (quit) {
driver.quit();
} else {
driver.close();
}
} catch (WebDriverException e) {
// browser was already closed
} catch (Exception e) {
ReportManager.log(e);
}
}
private static void attachWebDriverLogs(WebDriver driver) {
try {
driver.manage().logs().getAvailableLogTypes().forEach(logType -> {
StringBuilder logBuilder = new StringBuilder();
for (LogEntry entry : driver.manage().logs().get(logType)) {
logBuilder.append(entry.toString()).append(System.lineSeparator());
}
ReportManager.attach("Selenium WebDriver Logs", logType, logBuilder.toString());
});
} catch (WebDriverException e) {
// exception when the defined logging is not supported
}
}
private static DesiredCapabilities setAppiumDesiredCapabilitiesList() {
DesiredCapabilities desiredCapabilities = new DesiredCapabilities();
Map caps = PropertyFileManager.getAppiumDesiredCapabilities();
caps.forEach((capabilityName, value) -> {
if (!value.trim().equals("")) {
desiredCapabilities.setCapability(capabilityName.split("mobile_")[1], value);
}
});
return desiredCapabilities;
}
/**
* Create and/or return an instance of the target browser (maintains a single
* instance per browser type) and checks for cross-compatibility between the
* selected browser and operating system
*
* @param browserName the name of the browser that you want to run, currently
* supports 'MozillaFirefox', 'MicrosoftInternetExplorer',
* 'GoogleChrome', and 'MicrosoftEdge'
* @return a singleton browser instance
*/
private static synchronized WebDriver getBrowser(String browserName, MutableCapabilities customBrowserOptions) {
initializeSystemProperties(System.getProperty("targetBrowserName") == null);
String internalBrowserName = browserName;
if (internalBrowserName == null) {
internalBrowserName = TARGET_BROWSER_NAME;
}
if (isMobileWebExecution()) {
internalBrowserName = System.getProperty("mobile_browserName");
}
try {
if (!isMobileNativeExecution()) {
checkBrowserOSCrossCompatibility(internalBrowserName);
// check cross-compatibility between the selected operating system and browser
// and report in case they are not compatible
setLoggingPrefrences();
// set logging global preferences
}
if (!isMobileExecution()) {
setDriverOptions(internalBrowserName, customBrowserOptions);
// set driver options with respect to the target browser name
}
if (Boolean.TRUE.equals(BROWSEROBJECTSINGLETON)) {
closeAllDrivers();
}
if ("local".equals(EXECUTION_ADDRESS) && !isMobileExecution()) {
// Manage local execution
driver.set(createNewLocalDriverInstance(internalBrowserName));
} else {
// Manage remote execution / or appium execution
driver.set(createNewRemoteDriverInstance(internalBrowserName));
}
if (!isMobileNativeExecution()) {
driver.get().manage().timeouts().pageLoadTimeout(PAGE_LOAD_TIMEOUT, TimeUnit.SECONDS);
driver.get().manage().timeouts().setScriptTimeout(SCRIPT_TIMEOUT, TimeUnit.SECONDS);
if (Boolean.TRUE.equals(WAIT_IMPLICITLY)) {
driver.get().manage().timeouts().implicitlyWait(IMPLICIT_WAIT_TIMEOUT, TimeUnit.SECONDS);
}
JavaScriptWaitManager.setDriver(driver.get());
if (Boolean.TRUE.equals(AUTO_MAXIMIZE) && !isMobileWebExecution()
&& (!BrowserType.GOOGLE_CHROME.equals(getBrowserTypeFromName(internalBrowserName)) || OperatingSystemType.MACOS.equals(getOperatingSystemFromName(targetOperatingSystem)))) {
BrowserActions.maximizeWindow(driver.get());
}
}
} catch (NullPointerException e) {
ReportManager.log(e);
ReportManager.log("Unhandled Exception with Browser Type [" + internalBrowserName + "].");
Assert.fail("Unhandled Exception with Browser Type [" + internalBrowserName + "].", e);
}
return driver.get();
}
private static void initializeSystemProperties(Boolean readPropertyFilesBeforeInitializing) {
if (readPropertyFilesBeforeInitializing) {
PropertyFileManager.readPropertyFiles();
}
AUTO_MAXIMIZE = Boolean
.valueOf(System.getProperty("autoMaximizeBrowserWindow").trim());
HEADLESS_EXECUTION = Boolean.valueOf(System.getProperty("headlessExecution").trim());
EXECUTION_ADDRESS = System.getProperty("executionAddress").trim();
// local OR hub ip:port
TARGET_HUB_URL = "http://" + EXECUTION_ADDRESS + "/wd/hub";
// Windows-64 | Linux-64 | Mac-64
TARGET_BROWSER_NAME = System.getProperty("targetBrowserName");
// Default | MozillaFirefox | MicrosoftInternetExplorer | GoogleChrome |
// MicrosoftEdge | Safari
TARGET_PLATFORM_NAME = System.getProperty("mobile_platformName");
TARGET_PLATFORM_BROWSER_NAME = System.getProperty("mobile_browserName");
WEBDRIVERMANAGER_MESSAGE = "Identifying OS/Browser combination and selecting the correct driver version automatically. Please note that if a new driver executable will be downloaded it may take some time...";
PAGE_LOAD_TIMEOUT = Integer.parseInt(System.getProperty("pageLoadTimeout"));
SCRIPT_TIMEOUT = Integer.parseInt(System.getProperty("scriptExecutionTimeout"));
IMPLICIT_WAIT_TIMEOUT = Integer.parseInt(System.getProperty("implicitWaitTimeout"));
WAIT_IMPLICITLY = Boolean.valueOf(System.getProperty("waitImplicitly").trim());
BROWSEROBJECTSINGLETON = Boolean
.valueOf(System.getProperty("browserObjectSingleton").trim());
customDriverPath = System.getProperty("customDriverPath");
customDriverName = System.getProperty("customDriverName");
targetOperatingSystem = System.getProperty("targetOperatingSystem");
}
private static void storeDriverInstance(String browserName) {
drivers.put(browserName + "_" + driver.get().hashCode(), new HashMap<>());
drivers.get(browserName + "_" + driver.get().hashCode()).put(targetOperatingSystem, driver.get());
}
// supported browser types
public enum BrowserType {
MOZILLA_FIREFOX("MozillaFirefox"), GOOGLE_CHROME("GoogleChrome"), APPLE_SAFARI("Safari"),
MICROSOFT_IE("MicrosoftInternetExplorer"), MICROSOFT_EDGE("MicrosoftEdge"), MOBILE_CHROME("Chrome"),
MOBILE_CHROMIUM("Chromium"), MOBILE_BROWSER("Browser"), MOBILE_NATIVE("");
private final String value;
BrowserType(String type) {
this.value = type;
}
protected String getValue() {
return value;
}
}
// supported operating systems
public enum OperatingSystemType {
LINUX("Linux-64"), MACOS("Mac-64"), WINDOWS("Windows-64"), ANDROID("Android"), IOS("iOS"),
FIREFOXOS("FirefoxOS");
private final String value;
OperatingSystemType(String type) {
this.value = type;
}
protected String getValue() {
return value;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy