How to use takeScreenshot method of com.testsigma.automator.runners.TestcaseStepRunner class

Best Testsigma code snippet using com.testsigma.automator.runners.TestcaseStepRunner.takeScreenshot

Source:TestcaseStepRunner.java Github

copy

Full Screen

...171 oldMetadata.putAll(metadata);172 StepResultMetadataEntity metadataEntity = mapper.convertValue(oldMetadata, StepResultMetadataEntity.class);173 testCaseStepResult.setMetadata(metadataEntity);174 testCaseStepResult.getMetadata().setTestStep(testCaseStepEntity);175 takeScreenshot(workspaceType, testCaseStepEntity, testCaseStepResult,176 testPlanRunSettingEntity.getScreenshot(), screenCaptureUtil);177 if (testCaseStepEntity.getConditionType() != null && (testCaseStepEntity.getConditionType() != ConditionType.NOT_USED)) {178 setConditionResult(testCaseStepEntity, testCaseStepResult, parentStatus);179 status = (testCaseStepResult.getResult() != ResultConstant.SUCCESS) ? testCaseStepResult.getResult() : status;180 } else {181 status = (testCaseStepResult.getResult() != ResultConstant.SUCCESS) ? testCaseStepResult.getResult() : status;182 if ((status == ResultConstant.SUCCESS) && StringUtils.isBlank(testCaseStepResult.getMessage())) {183 testCaseStepResult.setMessage(AutomatorMessages.MSG_STEP_SUCCESS);184 } else if (StringUtils.isBlank(testCaseStepResult.getMessage())) {185 testCaseStepResult.setMessage(AutomatorMessages.MSG_STEP_FAILURE);186 }187 }188 log.debug("Test Step Result - " + status);189 }190 log.debug("Test Step Result [2] - " + status);191 boolean majorFailure = (status != ResultConstant.SUCCESS && status != ResultConstant.ABORTED) &&192 (testCaseStepEntity.getPriority() == TestStepPriority.MAJOR &&193 testPlanRunSettingEntity.getRecoveryAction() == RecoverAction.Run_Next_Testcase);194 boolean hasToAbortTestcase = (majorFailure && !isGroupStep && !isStepGroup);195 if (!testCaseStepResult.getSkipExe() && hasToAbortTestcase) {196 setFailedMessage(testCaseStepResult, testCaseResult, testCaseStepEntity.getStepDetails().getIgnoreStepResult());197 }198 //Add Loop level result199 if (testCaseStepEntity.getType() == TestStepType.BREAK_LOOP && status == ResultConstant.SUCCESS) {200 testCaseStepResult.setIsBreakLoop(true);201 } else if (testCaseStepEntity.getType() == TestStepType.CONTINUE_LOOP && status == ResultConstant.SUCCESS) {202 testCaseStepResult.setIsContinueLoop(true);203 }204 } catch (UnreachableBrowserException e) {205 status = ResultConstant.FAILURE;206 testCaseStepResult.setErrorCode(com.testsigma.automator.constants.ErrorCodes.BROWSER_CLOSED);207 testCaseStepResult.setMessage(String.format(BROWSER_UNREACHABLE));208 } catch (NoSuchSessionException e) {209 status = ResultConstant.FAILURE;210 testCaseStepResult.setMessage(String.format(INVALID_SESSION));211 } catch (Exception e) {212 log.error(e.getMessage(), e);213 status = ResultConstant.FAILURE;214 testCaseStepResult.setErrorCode(com.testsigma.automator.constants.ErrorCodes.UNKNOWN_PROBLEM);215 if(testCaseStepResult.getMessage()==null)216 testCaseStepResult.setMessage(e.getMessage());217 }218 resetThreadContextData();219 testCaseStepResult.setResult(status);220 testCaseStepResult.setEndTime(new Timestamp(System.currentTimeMillis()));221 log.debug("Finished Executing Test Case Step - " + testCaseStepResult.getTestCaseStepId());222 return testCaseStepResult;223 }224 protected ResultConstant executeStepGroup(TestCaseStepEntity testCaseStepEntity, TestCaseStepResult testCaseStepResult,225 Map<Long, TestCaseStepResult> testCaseStepResultMap, TestCaseResult testCaseResult,226 HashMap<Long, TestCaseStepResult> parentStatus, boolean failedToProcess,227 ScreenCaptureUtil screenCaptureUtil, ResultConstant currentStatus) throws Exception {228 executeGroup(testCaseStepEntity, testCaseStepResult, testCaseStepResultMap, testCaseResult, parentStatus, failedToProcess, screenCaptureUtil);229 if (testCaseStepEntity.getConditionType() != null && (testCaseStepEntity.getConditionType() != ConditionType.NOT_USED)) {230 setConditionResult(testCaseStepEntity, testCaseStepResult, parentStatus);231 }232 ResultConstant status = (testCaseStepResult.getResult() != ResultConstant.SUCCESS) ? testCaseStepResult.getResult() : currentStatus;233 if ((status == ResultConstant.SUCCESS)) {234 testCaseStepResult.setMessage(AutomatorMessages.MSG_STEP_GROUP_SUCCESS);235 } else if (StringUtils.isBlank(testCaseStepResult.getMessage())) {236 testCaseStepResult.setMessage(AutomatorMessages.MSG_STEP_GROUP_FAILURE);237 }238 return status;239 }240 protected ResultConstant executeForLoop(TestCaseStepEntity testCaseStepEntity, TestCaseStepResult forLoopResultObj,241 Map<Long, TestCaseStepResult> testCaseStepResultMap, TestCaseResult tresult,242 HashMap<Long, TestCaseStepResult> parentStatus, boolean failedToProcess,243 ScreenCaptureUtil screenCaptureUtil, ResultConstant currentStatus) throws Exception {244 log.debug("Step type is FOR_LOOP. Executing it:" + testCaseStepEntity);245 //In for loop , if there is a continue step encountered in prev iteration, we should not skip execution or loop.246 TestCaseStepResult previousLoopResultIfAny = testCaseStepResultMap.get(testCaseStepEntity.getId());247 if (previousLoopResultIfAny != null && previousLoopResultIfAny.getIsContinueLoop()) {248 forLoopResultObj.setSkipExe(false);249 } else if (previousLoopResultIfAny != null && previousLoopResultIfAny.getIsBreakLoop()) {250 forLoopResultObj.setSkipExe(true);251 }252 executeGroup(testCaseStepEntity, forLoopResultObj, testCaseStepResultMap, tresult, parentStatus, failedToProcess, screenCaptureUtil);253 //previous loop encountered a break ,We need to disable skipExe, else further testcases(After loop) will not be executed.254 if (previousLoopResultIfAny != null && previousLoopResultIfAny.getIsBreakLoop()) {255 forLoopResultObj.setIsBreakLoop(true);256 forLoopResultObj.setSkipExe(false);//If skip is true, execution will not be continued after the loop.257 forLoopResultObj.setResult(ResultConstant.SUCCESS);258 }259 forLoopResultObj.setIndex(testCaseStepEntity.getIndex());260 forLoopResultObj.setIteration(testCaseStepEntity.getIteration());261 forLoopResultObj.setTestDataProfileName(testCaseStepEntity.getTestDataProfileName());262 ResultConstant status = (currentStatus.getId() < forLoopResultObj.getResult().getId()) ? forLoopResultObj.getResult() : currentStatus;263 if ((forLoopResultObj.getResult() == ResultConstant.SUCCESS)) {264 forLoopResultObj.setMessage(AutomatorMessages.getMessage(AutomatorMessages.MSG_ITERATION_SUCCESS, testCaseStepEntity.getIndex()));265 } else if (StringUtils.isBlank(forLoopResultObj.getMessage())) {266 forLoopResultObj.setMessage(AutomatorMessages.getMessage(AutomatorMessages.MSG_ITERATION_FAILURE, testCaseStepEntity.getIndex()));267 }268 return status;269 }270 protected ResultConstant executeWhileLoop(TestCaseStepEntity testcaseStep, TestCaseStepResult whileLoopResultObj, Map<Long, TestCaseStepResult> mapStepResult,271 TestCaseResult tresult, HashMap<Long, TestCaseStepResult> parentStatus,272 boolean failedToProcess, ScreenCaptureUtil screenCaptureUtil, ResultConstant currentStatus) throws Exception {273 Long envRunId = EnvironmentRunner.getRunnerEnvironmentRunResult().getId();274 log.debug("Executing while loop:" + testcaseStep);275 TestCaseStepEntity whileConditionStep = testcaseStep.getTestCaseSteps().get(0);276 List<TestCaseStepResult> whileLoopIterationResults = new ArrayList<>();277 boolean breakLoop = false;278 ResultConstant whileLoopResult = ResultConstant.SUCCESS;279 boolean conditionFailed = false;280 int noOfIterationsCompleted = 0;281 //Iterations loop, we are limiting max loop count to ActionConstants.WHILE_LOOP_MAX_LIMIT282 for (int i = 1; i <= NaturalTextActionConstants.WHILE_LOOP_MAX_LIMIT; i++) {283 if (breakLoop) {284 break;285 }286 TestCaseStepResult whileConditionStepResult = new TestCaseStepResult();287 whileConditionStepResult.setEnvRunId(envRunId);288 whileConditionStepResult.setTestCaseResultId(tresult.getId());289 whileConditionStepResult.setTestCaseStepId(whileConditionStep.getId());290 whileConditionStepResult.setSkipExe(whileLoopResultObj.getSkipExe());291 whileConditionStepResult.setSkipMessage(whileLoopResultObj.getSkipMessage());292 whileConditionStepResult.setParentResultId(whileLoopResultObj.getId());293 whileConditionStepResult.setTestCaseStepType(whileConditionStep.getType());294 whileConditionStepResult.setStepDetails(whileConditionStep.getStepDetails());295 whileConditionStepResult.setIndex(i);296 setScreenshotPathsForIteration(whileConditionStep, i);297 TestStepType type = whileConditionStep.getType();298 TestcaseStepRunner testcaseStepRunner = new TestcaseStepRunnerFactory().getRunner(workspaceType, os, type);299 testcaseStepRunner.run(whileConditionStep, whileConditionStepResult, mapStepResult, tresult, parentStatus, failedToProcess, false, screenCaptureUtil);300 if (whileConditionStepResult.getResult() != ResultConstant.SUCCESS) {301 whileConditionStepResult.setSkipExe(true);302 if (whileConditionStepResult.getResult() == ResultConstant.FAILURE) {303 whileConditionStepResult.setSkipMessage(String.format("%s<br>%s", AutomatorMessages.MSG_WHILE_CONDITION_FAILED, whileConditionStepResult.getMessage()));304 conditionFailed = true;305 }306 }307 mapStepResult.put(whileConditionStep.getId(), whileConditionStepResult);308 log.debug("While condition result :::: " + objectMapperService.convertToJson(whileConditionStepResult));309 executeGroup(whileConditionStep, whileConditionStepResult, mapStepResult, tresult, parentStatus, failedToProcess, screenCaptureUtil);310 //Update Iteration result to SUCCESS if break or continue is executed311 if (whileConditionStepResult.getIsBreakLoop() || whileConditionStepResult.getIsContinueLoop()) {312 whileConditionStepResult.setResult(ResultConstant.SUCCESS);313 }314 //If condition is passed, and while executing the group of steps inside condition, if there is a failure in group, parent status will be skipped315 if (whileConditionStepResult.getResult() == ResultConstant.SUCCESS && whileConditionStepResult.getSkipExe()) {316 whileLoopResult = ResultConstant.FAILURE;317 whileLoopResultObj.setSkipExe(true);318 }319 //While loop break condition.320 if (whileConditionStepResult.getIsBreakLoop() || whileConditionStepResult.getSkipExe()) {321 breakLoop = true;322 }323 whileLoopIterationResults.add(whileConditionStepResult);324 whileLoopResult = (whileLoopResult.getId() < whileConditionStepResult.getResult().getId()) ? whileConditionStepResult.getResult() : whileLoopResult;325 //If condition step is failed, we should not fail while loop status326 if (conditionFailed) {327 whileLoopResult = ResultConstant.SUCCESS;328 }329 noOfIterationsCompleted = i;330 }331 //Add all iteration results to parent LOOP step332 whileLoopResultObj.setStepResults(whileLoopIterationResults);333 if (whileLoopResultObj.getResult() == null) {334 whileLoopResultObj.setResult(whileLoopResult);335 }336 ResultConstant status = (currentStatus.getId() < whileLoopResultObj.getResult().getId()) ? whileLoopResultObj.getResult() : currentStatus;337 if ((whileLoopResultObj.getResult() == ResultConstant.SUCCESS)) {338 if (noOfIterationsCompleted == NaturalTextActionConstants.WHILE_LOOP_MAX_LIMIT) {339 status = ResultConstant.FAILURE;340 whileLoopResultObj.setResult(ResultConstant.FAILURE);341 whileLoopResultObj.setMessage(AutomatorMessages.MSG_WHILE_LOOP_ITERATIONS_EXHAUSTED);342 } else {343 whileLoopResultObj.setMessage(AutomatorMessages.MSG_WHILE_LOOP_SUCCESS);344 }345 } else if (whileLoopResultObj.getResult() == ResultConstant.FAILURE) {346 whileLoopResultObj.setMessage(AutomatorMessages.MSG_WHILE_LOOP_FAILURE);347 }348 return status;349 }350 protected void setScreenshotPathsForIteration(TestCaseStepEntity testStepEntity, int iterationNumber) {351 String key = String.format("%s_%s", iterationNumber, testStepEntity.getIndex());352 Map<String, String> conditionStepScreenshots = testStepEntity.getAdditionalScreenshotPaths();353 testStepEntity.setScreenshotPath(conditionStepScreenshots.get(key));354 if (testStepEntity.getTestCaseSteps() != null && testStepEntity.getTestCaseSteps().size() > 0) {355 for (TestCaseStepEntity childStep : testStepEntity.getTestCaseSteps()) {356 setScreenshotPathsForIteration(childStep, iterationNumber);357 }358 }359 }360 private void executeGroup(TestCaseStepEntity testcaseStep, TestCaseStepResult result, Map<Long, TestCaseStepResult> mapStepResult,361 TestCaseResult tresult, HashMap<Long, TestCaseStepResult> parentStatus,362 boolean failedToProcess, ScreenCaptureUtil ScreenCaptureUtil) throws Exception {363 ExecutionLabType exeType = EnvironmentRunner.getRunnerEnvironmentEntity().getExecutionLabType();364 TestPlanRunSettingEntity settings = EnvironmentRunner.getRunnerEnvironmentEntity().getTestPlanSettings();365 Long envRunId = EnvironmentRunner.getRunnerEnvironmentRunResult().getId();366 List<TestCaseStepResult> stepResults = new ArrayList<>();367 result.setStepResults(stepResults);368 ResultConstant status = ResultConstant.SUCCESS;369 Boolean skipExe = result.getSkipExe();370 String message = result.getSkipMessage();371 boolean isMajorStepGroupFailure =372 (testcaseStep.getPriority().equals(TestStepPriority.MAJOR) &&373 settings.getRecoveryAction() == RecoverAction.Run_Next_Testcase);374 boolean isStepGroup = (testcaseStep.getStepGroupId() != null && testcaseStep.getStepGroupId() > 0);375 boolean breakLoopStepExecuted = false;376 boolean continueLoopStepExecuted = false;377 for (TestCaseStepEntity childStep : testcaseStep.getTestCaseSteps()) {378 populateThreadContextData(childStep);379 log.debug("Executing group step:" + childStep.getId());380 if (breakLoopStepExecuted || continueLoopStepExecuted) {381 log.debug(String.format("Skip execution due to break/continue loop:stepGroupId=%s", childStep.getId()));382 skipExe = true;383 }384 TestCaseStepResult childStepResult = new TestCaseStepResult();385 childStepResult.setEnvRunId(envRunId);386 childStepResult.setTestCaseResultId(tresult.getId());387 childStepResult.setTestCaseStepId(childStep.getId());388 childStepResult.setSkipExe(skipExe);389 childStepResult.setSkipMessage(message);390 TestCaseStepResult parentResult = parentStatus.get(childStep.getParentId());391 childStepResult.setParentResultId(parentResult != null ? parentResult.getId() : null);392 childStepResult.setTestCaseStepType(childStep.getType());393 childStepResult.setStepDetails(childStep.getStepDetails());394 RunnerUtil util = new RunnerUtil();395 TestStepType type = childStep.getType();396 TestcaseStepRunner testcaseStepRunner = new TestcaseStepRunnerFactory().getRunner(workspaceType, os, type);397 boolean isFailure =398 (399 //this check is used to skip loop child steps check.400 //because loop step result is set only after loop is finished401 !util.isLoopSteps(isStepGroup, testcaseStep, childStep)402 && (util.canSkipNormalStep(parentResult, childStep, childStepResult)403 || util.canSkipIfElse(parentResult, childStep, childStepResult)404 || util.nestedConditionalStep(parentResult, childStep, childStepResult)405 || util.canSkipIfElseIf(parentResult, childStep, childStepResult)406 || util.canSkipElseIfElseIf(parentResult, childStep, childStepResult)407 || util.canSkipElseIfElse(parentResult, childStep, childStepResult)408 || util.canSkipIfCondition(parentResult, childStep, childStepResult)409 || util.canSkipForLoop(parentResult, childStep, childStepResult)))410 //This check for updating loop steps if loop parent is failed411 || util.canSkipForLoopTopSteps(isStepGroup, parentResult, testcaseStep, childStep, childStepResult);412 if (!skipExe && !failedToProcess && isFailure) {413 testcaseStepRunner.run(childStep, childStepResult, mapStepResult, tresult, parentStatus, false, isStepGroup, ScreenCaptureUtil);414 mapStepResult.put(childStep.getId(), childStepResult);415 stepResults.add(childStepResult);416 parentStatus.put(childStep.getId(), childStepResult);417 continue;418 }419 testcaseStepRunner.run(childStep, childStepResult, mapStepResult, tresult, parentStatus, failedToProcess, isStepGroup, ScreenCaptureUtil);420 mapStepResult.put(childStep.getId(), childStepResult);421 stepResults.add(childStepResult);422 log.debug("Result in Step Group :::: " + objectMapperService.convertToJson(childStepResult));423 if ((childStep.getConditionType() == null || childStep.getConditionType() == ConditionType.NOT_USED ||424 ConditionType.LOOP_FOR == (childStep.getConditionType()))&& (!childStep.getStepDetails().getIgnoreStepResult())) {425 status = (status.getId() < childStepResult.getResult().getId()) ? childStepResult.getResult() : status;426 }427 boolean isMajorStepFailure = isStepGroup && isStepGroupFailure(testcaseStep, childStep, childStepResult);428 if (!skipExe && isMajorStepFailure && isMajorStepGroupFailure) {429 result.setResult(ResultConstant.FAILURE);430 String majorMessage = new StringBuffer(AutomatorMessages.MSG_STEP_MAJOR_STEP_FAILURE)431 .append((childStepResult.getMessage() != null) ? childStepResult.getMessage() + "." : "")432 .append(AutomatorMessages.MSG_CHECK_FOR_MORE_DETAILS).toString();433 result.setMessage(majorMessage);434 setFailedMessage(childStepResult, tresult, testcaseStep.getStepDetails().getIgnoreStepResult());435 }436 skipExe = childStepResult.getSkipExe();437 message = childStepResult.getSkipMessage();438 //Set break loop and continue loop to group results439 if (childStepResult.getResult() == ResultConstant.SUCCESS440 && (childStepResult.getIsBreakLoop() || childStepResult.getIsContinueLoop())) {441 continueLoopStepExecuted = childStepResult.getIsContinueLoop();442 breakLoopStepExecuted = childStepResult.getIsBreakLoop();443 populateLoopConditionResult(result, childStepResult, testcaseStep);444 log.debug("Is Break loop step executed successfully:" + breakLoopStepExecuted);445 log.debug("Is Continue loop step executed successfully:" + continueLoopStepExecuted);446 }447 result.setSkipExe(skipExe);448 result.setSkipMessage(message);449 }450 if (result.getResult() == null) {451 result.setResult(status);452 }453 //If current loop encounters a continue OR current loop encountered a break.454 // We need to disable skipExe, else further testcases(After loop) will not be executed.455 if (result.getIsContinueLoop() || result.getIsBreakLoop()) {456 result.setSkipExe(false);//If skip is true, execution will not be continued after the loop.457 result.setResult(ResultConstant.SUCCESS);458 }459 resetThreadContextData();460 }461 protected void populateLoopConditionResult(TestCaseStepResult parentLoopResult, TestCaseStepResult childStepResult, TestCaseStepEntity parentLoopStep) {462 if (parentLoopStep.getConditionType() == ConditionType.LOOP_WHILE463 || parentLoopStep.getConditionType() == ConditionType.LOOP_FOR464 || parentLoopStep.getStepGroupId() != null) {465 if (childStepResult.getIsBreakLoop()) {466 parentLoopResult.setIsBreakLoop(childStepResult.getIsBreakLoop());467 } else if (childStepResult.getIsContinueLoop()) {468 parentLoopResult.setIsContinueLoop(childStepResult.getIsContinueLoop());469 }470 }471 }472 private void setFailedMessage(TestCaseStepResult result, TestCaseResult testCaseResult, Boolean ignoreStepResult) throws AutomatorException {473 result.setSkipExe(true);474 result.setSkipMessage(AutomatorMessages.MSG_STEP_MAJOR_STEP_FAILURE);475 if(!ignoreStepResult) {476 String majorMessage = AutomatorMessages.MSG_STEP_MAJOR_STEP_FAILURE +477 ((result.getMessage() != null) ? result.getMessage() : "") + " . " + AutomatorMessages.MSG_CHECK_FOR_MORE_DETAILS;478 testCaseResult.setMessage(majorMessage);479 testCaseResult.setResult(ResultConstant.FAILURE);480 }481 }482 private boolean isStepGroupFailure(TestCaseStepEntity testcaseStep, TestCaseStepEntity childStep,483 TestCaseStepResult childStepResult) {484 return childStep.getPriority() == TestStepPriority.MAJOR &&485 childStepResult.getResult() != null && !childStepResult.getResult().equals(ResultConstant.SUCCESS)486 && (testcaseStep.getConditionType() == null || !testcaseStep.getConditionType().equals(ConditionType.LOOP_FOR))487 && !childStep.getStepDetails().getIgnoreStepResult();488 }489 protected void setTestDataValue(TestCaseStepEntity step, Map<String, String> envDetails, TestCaseResult testCaseResult, TestCaseStepResult testCaseStepResult)490 throws AutomatorException, ClassNotFoundException, NoSuchMethodException, InstantiationException, IllegalAccessException, IOException, InvocationTargetException {491 if (step.getTestDataMap() == null)492 return;493 int index =0;494 Map<String, TestDataPropertiesEntity> testDataPropertiesEntityMap = step.getTestDataMap();495 for (Map.Entry<String, TestDataPropertiesEntity> entry : testDataPropertiesEntityMap.entrySet()) {496 TestDataPropertiesEntity testDataPropertiesEntity = entry.getValue();497 TestDataType testDataType = TestDataType.getTestDataType(ObjectUtils.defaultIfNull(testDataPropertiesEntity.getTestDataType(), "raw"));498 switch (testDataType) {499 case runtime:500 if (!step.getAction().startsWith("Store ")) {501 RuntimeDataProvider runtimeDataProvider = new RuntimeDataProvider();502 testDataPropertiesEntity.setTestDataValue(503 runtimeDataProvider.getRuntimeData(testDataPropertiesEntity.getTestDataValue()));504 }505 break;506 case random:507 testDataPropertiesEntity.setTestDataValue(RandomStringUtils.randomAlphanumeric(508 Integer.parseInt(testDataPropertiesEntity.getTestDataValue())));509 break;510 case function:511 if (!testDataPropertiesEntity.getDefaultDataGeneratorsEntity().getIsAddonFn()) {512 DefaultDataGeneratorsEntity testDataFunctionEntity = testDataPropertiesEntity.getDefaultDataGeneratorsEntity();513 DefaultDataGeneratorsExecutor testDataFunctionExecutor = new DefaultDataGeneratorsExecutor();514 testDataFunctionExecutor.setTestCaseResult(testCaseResult);515 testDataFunctionExecutor.setSettings(envDetails);516 testDataFunctionExecutor.setDefaultDataGeneratorsEntity(testDataFunctionEntity);517 String testDataValue = testDataFunctionExecutor.generate();518 testDataPropertiesEntity.setTestDataName(testDataPropertiesEntity.getTestDataValue());519 testDataPropertiesEntity.setTestDataValue(testDataValue);520 } else {521 setTestDataValueFromAddonTestDataFunction(step, index, testDataPropertiesEntity, testCaseStepResult);522 index++;523 }524 break;525 }526 step.setTestDataName(testDataPropertiesEntity.getTestDataName());527 step.setTestDataValue(testDataPropertiesEntity.getTestDataValue());528 }529 }530 private void setTestDataValueFromAddonTestDataFunction(TestCaseStepEntity testCaseStepEntity, int index, TestDataPropertiesEntity testDataPropertiesEntity, TestCaseStepResult testCaseStepResult) throws IOException, ClassNotFoundException, NoSuchMethodException, IllegalAccessException, InstantiationException, InvocationTargetException {531 try {532 List<AddonPluginTestDataFunctionEntity> addonPluginTDFEntityList = testCaseStepEntity.getAddonPluginTDFEntityList();533 AddonPluginTestDataFunctionEntity entity = addonPluginTDFEntityList.get(index);534 String jarFilePath = addonService.checkAndDownloadJar(entity.getClassPath(), entity.getModifiedHash());535 Class<?> clazz = addonService.loadJarClass(jarFilePath, entity.getFullyQualifiedName(), false);536 Object instance = clazz.getDeclaredConstructor().newInstance();537 setTestDataParameter(instance, addonService, testDataPropertiesEntity);538 Method executeMethod = clazz.getDeclaredMethod("generate");539 executeMethod.setAccessible(true);540 TestData testData = (TestData) executeMethod.invoke(instance);541 testDataPropertiesEntity.setTestDataName(entity.getDisplayName());542 testDataPropertiesEntity.setTestDataValue(testData.getValue().toString());543 } catch (Exception e) {544 String message = StringUtils.isBlank(e.getMessage()) ? e.getCause().getMessage() : e.getMessage();545 if (message == null) {546 testCaseStepResult.setMessage("Teststep execution failed. No Additional message was available.");547 } else {548 testCaseStepResult.setMessage(message);549 }550 throw e;551 }552 }553 public void setTestDataParameter(Object instance, AddonService addonService, TestDataPropertiesEntity testDataPropertiesEntity) throws NoSuchMethodException, InstantiationException, IllegalAccessException, InvocationTargetException {554 Map<String, String> arguments = testDataPropertiesEntity.getDefaultDataGeneratorsEntity().getArguments();555 for (Map.Entry<String, String> entry : arguments.entrySet()) {556 String key = entry.getKey();557 String value = entry.getValue();558 Object testDataParameterInstance = addonService.getTestDataParameterInstance(value);559 FieldUtils.writeField(instance, key, testDataParameterInstance, true);560 log.info("Setting test data instance - " + testDataParameterInstance);561 }562 }563 private void takeScreenshot(WorkspaceType workspaceType, TestCaseStepEntity testcaseStep,564 TestCaseStepResult result, Screenshot option, ScreenCaptureUtil screenCaptureUtil) {565 TestDeviceSettings envSettings = EnvironmentRunner.getRunnerEnvironmentEntity().getEnvSettings();566 try {567 boolean takeScreenshot = false;568 String screenshotS3URL = testcaseStep.getScreenshotPath();569 if (option == Screenshot.NONE) {570 takeScreenshot = false;571 } else if (option == Screenshot.ALL_TYPES) {572 takeScreenshot = true;573 } else if ((option == Screenshot.FAILED_STEPS) && (result.getResult() != ResultConstant.SUCCESS)) {574 takeScreenshot = true;575 }576 int screenshotType = 0;577 if (testcaseStep.getAction() != null && testcaseStep.getAction().toLowerCase()578 .contains(AutomatorMessages.KEYWORD_SCREENSHOT.toLowerCase())) {579 screenshotType = 1;580 } else if (testcaseStep.getAction() != null && testcaseStep.getAction().toLowerCase()581 .contains(AutomatorMessages.KEYWORD_SCREENSHOT.toLowerCase())) {582 screenshotType = 2;583 }584 if (Arrays.asList(SKIP_SCREENSHOT_KEYWORDS).contains(testcaseStep.getAction())) {585 takeScreenshot = false;586 }587 if (!takeScreenshot && screenshotType == 0) {588 return;589 }590 String screenShotName = FilenameUtils.getName(new java.net.URL(screenshotS3URL).getPath());591 String localFolderPath = envSettings.getScreenshotLocalPath();592 testcaseStep.setScreenshot(option);593 result.setScreenshotName(screenShotName);594 WebDriver driver = DriverManager.getRemoteWebDriver();595 switch (workspaceType) {596 case WebApplication:597 case MobileWeb:598 if (screenshotType == 1) {599 screenCaptureUtil.screenShotWithURL(localFolderPath, screenshotS3URL, driver);600 } else if (screenshotType == 2) {601 screenCaptureUtil.fullPageScreenshotWithURL(localFolderPath, screenshotS3URL, driver);...

Full Screen

Full Screen

takeScreenshot

Using AI Code Generation

copy

Full Screen

1String screenshot = com.testsigma.automator.runners.TestcaseStepRunner.takeScreenshot();2com.testsigma.automator.runners.TestcaseStepRunner.takeScreenshot();3com.testsigma.automator.runners.TestcaseStepRunner.takeScreenshot();4com.testsigma.automator.runners.TestcaseStepRunner.takeScreenshot();5com.testsigma.automator.runners.TestcaseStepRunner.takeScreenshot();6com.testsigma.automator.runners.TestcaseStepRunner.takeScreenshot();7com.testsigma.automator.runners.TestcaseStepRunner.takeScreenshot();8com.testsigma.automator.runners.TestcaseStepRunner.takeScreenshot();9com.testsigma.automator.runners.TestcaseStepRunner.takeScreenshot();10com.testsigma.automator.runners.TestcaseStepRunner.takeScreenshot();11com.testsigma.automator.runners.TestcaseStepRunner.takeScreenshot();12com.testsigma.automator.runners.TestcaseStepRunner.takeScreenshot();13com.testsigma.automator.runners.TestcaseStepRunner.takeScreenshot();14com.testsigma.automator.runners.TestcaseStepRunner.takeScreenshot();

Full Screen

Full Screen

takeScreenshot

Using AI Code Generation

copy

Full Screen

1import com.testsigma.automator.runners.TestcaseStepRunner;2public class TakeScreenshot {3public static void main(String[] args) {4TestcaseStepRunner takeScreenshot = new TestcaseStepRunner();5takeScreenshot.takeScreenshot();6}7}8import com.testsigma.automator.runners.TestcaseStepRunner;9public class TakeScreenshot {10public static void main(String[] args) {11TestcaseStepRunner takeScreenshot = new TestcaseStepRunner();12takeScreenshot.takeScreenshot("screenshotName");13}14}15import com.testsigma.automator.runners.TestcaseStepRunner;16public class TakeScreenshot {17public static void main(String[] args) {18TestcaseStepRunner takeScreenshot = new TestcaseStepRunner();19takeScreenshot.takeScreenshot("screenshotName", "folderName");20}21}22import com.testsigma.automator.runners.TestcaseStepRunner;23public class TakeScreenshot {24public static void main(String[] args) {25TestcaseStepRunner takeScreenshot = new TestcaseStepRunner();26takeScreenshot.takeScreenshot("screenshotName", "folderName", true);27}28}29import com.testsigma.automator.runners.TestcaseStepRunner;30public class TakeScreenshot {31public static void main(String[] args) {32TestcaseStepRunner takeScreenshot = new TestcaseStepRunner();33takeScreenshot.takeScreenshot("screenshotName", "folderName", false);34}35}36import com.testsigma.automator.runners.TestcaseStepRunner;37public class TakeScreenshot {38public static void main(String[] args) {39TestcaseStepRunner takeScreenshot = new TestcaseStepRunner();40takeScreenshot.takeScreenshot("screenshotName", "folderName", true, true);41}42}43import com.testsigma.automator.runners.TestcaseStepRunner;44public class TakeScreenshot {45public static void main(String[] args) {46TestcaseStepRunner takeScreenshot = new TestcaseStepRunner();47takeScreenshot.takeScreenshot("s

Full Screen

Full Screen

takeScreenshot

Using AI Code Generation

copy

Full Screen

1com.testsigma.automator.runners.TestcaseStepRunner.takeScreenshot("screenshot1", "png");2com.testsigma.automator.runners.TestcaseStepRunner.takeScreenshot("screenshot2", "jpg");3com.testsigma.automator.runners.TestcaseStepRunner.takeScreenshot("screenshot3", "png");4com.testsigma.automator.runners.TestcaseStepRunner.takeScreenshot("screenshot4", "png");5com.testsigma.automator.runners.TestcaseStepRunner.takeScreenshot("screenshot5", "png");6com.testsigma.automator.runners.TestcaseStepRunner.takeScreenshot("screenshot6", "png");7com.testsigma.automator.runners.TestcaseStepRunner.takeScreenshot("screenshot7", "png");

Full Screen

Full Screen

takeScreenshot

Using AI Code Generation

copy

Full Screen

1public void takeScreenshot(String path, boolean fullPage) {2 try {3 TestcaseStepRunner.takeScreenshot(path, fullPage);4 } catch (Exception e) {5 e.printStackTrace();6 }7}8public void takeScreenshot(String path) {9 try {10 TestcaseStepRunner.takeScreenshot(path);11 } catch (Exception e) {12 e.printStackTrace();13 }14}15public void takeScreenshot() {16 try {17 TestcaseStepRunner.takeScreenshot();18 } catch (Exception e) {19 e.printStackTrace();20 }21}22public void takeScreenshot(boolean fullPage) {23 try {24 TestcaseStepRunner.takeScreenshot(fullPage);25 } catch (Exception e) {26 e.printStackTrace();27 }28}29public byte[] getScreenshot() {30 try {31 return TestcaseStepRunner.getScreenshot();32 } catch (Exception e) {33 e.printStackTrace();34 }35 return null;36}

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