How to use storeSessionId method of com.testsigma.automator.drivers.DriverManager class

Best Testsigma code snippet using com.testsigma.automator.drivers.DriverManager.storeSessionId

Source:TestcaseRunner.java Github

copy

Full Screen

...263 driverManager.setRestartDriverSession(Boolean.FALSE);264 } else {265 log.info("Found startNewDriverSession flag to be false. Continuing with the existing driver session.");266 if (driverManager.isRestart()) {267 driverManager.storeSessionId(DriverSessionType.TEST_CASE_SESSION, testCaseResult.getId());268 }269 }270 }271}...

Full Screen

Full Screen

Source:DriverManager.java Github

copy

Full Screen

...106 RemoteWebDriver remoteWebDriver;107 beforeSessionCreateActions();108 try {109 remoteWebDriver = createDriverSession();110 storeSessionId(driverSessionType, entityId);111 this.isRestart = isRestart;112 if (!isRestart) {113 this.initialSessionId = getSessionId();114 log.info("Initial Session ID:" + this.initialSessionId);115 } else {116 this.restartSessionId = getSessionId();117 log.info("Restarted Session ID:" + this.restartSessionId);118 }119 } catch (Exception e) {120 log.error(e.getMessage(), e);121 String errorMessage = parseErrorMessage(e.getMessage());122 if (StringUtils.isBlank(errorMessage)) {123 errorMessage = AutomatorMessages.EXCEPTION_WEBDRIVER_NOTCREATED + " - " + e.getMessage();124 } else if(e.getMessage().contains("NO_PARALLEL_RUN")){125 errorMessage = AutomatorMessages.NO_PARALLEL_RUNS;126 throw new TestsigmaNoParallelRunException(ErrorCodes.NO_PARALLEL_RUN,errorMessage);127 }else {128 errorMessage = "Unable to create a new Test Session due to unexpected failure(0x537). " + errorMessage;129 }130 endSession();131 throw new AutomatorException(ErrorCodes.DRIVER_NOT_CREATED, errorMessage);132 }133 if (remoteWebDriver != null) {134 log.info("Driver Session ID - " + getSessionId());135 } else {136 throw new AutomatorException(ErrorCodes.DRIVER_NOT_CREATED, AutomatorMessages.EXCEPTION_WEBDRIVER_NOTCREATED);137 }138 afterSessionCreateActions();139 }140 public void endSession() throws AutomatorException {141 try {142 if (getDriver() != null && (getDriver().getRemoteWebDriver() != null)) {143 log.info("Ending session(if exists) with execution UUID - " + executionUuid + " and session ID - "144 + getSessionId());145 RemoteWebDriver driver = getDriver().getRemoteWebDriver();146 try {147 beforeEndSessionActions();148 driver.quit();149 } catch (Exception e) {150 log.error(e.getMessage(), e);151 driver.quit();152 }153 afterEndSessionActions();154 } else {155 log.debug("There is no driver session with executionID - " + executionUuid);156 }157 } catch (Exception e) {158 throw new AutomatorException(e.getMessage(), e);159 }160 }161 protected void beforeEndSessionActions() throws AutomatorException {162 log.debug("Executing before end session actions for execution UUID - " + executionUuid);163 }164 protected void afterEndSessionActions() throws AutomatorException {165 log.debug("Executing after end session actions for execution UUID - " + executionUuid);166 new RuntimeDataProvider().clearRunTimeData(executionUuid);167 getDriver().setRemoteWebDriver(null);168 setDriver(null);169 sessionEndInstant = Instant.now();170 log.info("Total session time - " + TimeUtil.getFormattedDuration(sessionStartInstant, sessionEndInstant));171 }172 private String parseErrorMessage(String errorMessage) {173 String parsedErrorMessage = "";174 try {175 String[] tokens;176 if (errorMessage != null) {177 tokens = errorMessage.split("Original error:");178 if (tokens.length > 1) {179 tokens = tokens[1].split("Build info: version:");180 if (tokens.length > 1) {181 parsedErrorMessage = tokens[0];182 }183 }184 if(errorMessage.contains(SessionErrorType.PLATFORM_OS_NOT_SUPPORTED.name())){185 parsedErrorMessage = MSG_OS_NOT_SUPPORTED;186 }else if(errorMessage.contains(SessionErrorType.PLATFORM_BROWSER_VERSION_NOT_SUPPORTED.name())){187 parsedErrorMessage = MSG_BROWSER_NOT_SUPPORTED;188 }else if(errorMessage.contains(SessionErrorType.LAB_MINUTES_EXCEEDED.name())){189 parsedErrorMessage = MSG_LAB_MINUTES_EXCEEDED;190 }else if(errorMessage.contains(SessionErrorType.NO_PARALLEL_RUN.name())){191 parsedErrorMessage = MSG_NO_PARALLEL_RUN;192 }193 }194 } catch (Exception e) {195 log.error(e.getMessage(), e);196 }197 return parsedErrorMessage;198 }199 public void storeSessionId(DriverSessionType driverSessionType, Long entityId) throws AutomatorException {200 try {201 switch (driverSessionType) {202 case ENVIRONMENT_SESSION:203 storeEnvironmentSessionId(entityId);204 break;205 case TEST_SUITE_SESSION:206 storeTestSuiteSessionId(entityId);207 break;208 case TEST_CASE_SESSION:209 storeTestCaseSessionId(entityId);210 break;211 default:212 log.error("Unknown driver session type value provided - " + driverSessionType);213 }...

Full Screen

Full Screen

Automation Testing Tutorials

Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.

LambdaTest Learning Hubs:

YouTube

You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful