How to use handleException method of com.testsigma.automator.actions.AddonAction class

Best Testsigma code snippet using com.testsigma.automator.actions.AddonAction.handleException

Source:AddonAction.java Github

copy

Full Screen

...102 setException(new Exception(ObjectUtils.defaultIfNull(e.getCause(), e)));103 String message = StringUtils.isBlank(e.getMessage()) ? e.getCause().getMessage() : e.getMessage();104 setErrorMessage(message);105 if (e.getCause() == null || !e.getCause().getClass().getName().equals("java.lang.AssertionError"))106 handleException((Exception) getException().getCause());107 log.info(ActionResult.FAILED + " - " + getErrorMessage());108 snippetResult = ActionResult.FAILED;109 } finally {110 afterExecute();111 }112 return snippetResult;113 }114 private void beforeExecute() throws InvocationTargetException, NoSuchMethodException, InstantiationException, IllegalAccessException, AutomatorException {115 setDriver(null);116 setElements();117 setTestData();118 initRunTimeDataVariable();119 this.setRuntimeDataProvider(this.prepareRunTimeDataProvider());120 }121 private void afterExecute() throws NoSuchFieldException, IllegalAccessException, AutomatorException {122 saveRunTimeData();123 setAddonLogsInTestStep(instance);124 }125 protected void setSuccessMessage() throws NoSuchFieldException, IllegalAccessException {126 String msg = getSuccessMessageFromSnippet(instance);127 if (msg == null)128 this.successMessage = "Teststep executed successfully";129 else130 this.successMessage = StringUtils.abbreviate(msg, MESSAGE_MAX_SIZE);131 }132 protected void setErrorMessage() throws NoSuchFieldException, IllegalAccessException {133 String msg = getErrorMessageFromSnippet(instance);134 if (msg == null)135 this.errorMessage = "Teststep execution failed. No Additional message was available.";136 else137 this.errorMessage = StringUtils.abbreviate(msg, MESSAGE_MAX_SIZE);138 }139 private void setAddonLogsInTestStep(Object instance) throws NoSuchFieldException, IllegalAccessException {140 log.info("Saving Addon Logs in Test Step Result");141 Field loggerField = getField(instance.getClass(), "logger");142 loggerField.setAccessible(true);143 Field valueField = getField(loggerField.get(instance).getClass(), "value");144 valueField.setAccessible(true);145 StringBuilder val = (StringBuilder) valueField.get(loggerField.get(instance));146 result.setAddonActionLogs(val.toString());147 log.info("Successfully saved logs::" + val);148 }149 public void setDriver(Object object) throws IllegalAccessException {150 if (object != null)151 FieldUtils.writeField(object, "driver", DriverManager.getRemoteWebDriver(), true);152 else153 FieldUtils.writeField(instance, "driver", DriverManager.getRemoteWebDriver(), true);154 }155 public void setElements() throws AutomatorException, NoSuchMethodException, InstantiationException, IllegalAccessException, InvocationTargetException {156 AddonNaturalTextActionEntity addonNaturalTextActionEntity = testCaseStepEntity.getAddonNaturalTextActionEntity();157 Map<String, ElementPropertiesEntity> elementsMap = testCaseStepEntity.getElementsMap();158 if (!elementsMap.isEmpty()) {159 for (AddonNaturalTextActionParameterEntity addonNaturalTextActionParameterEntity : addonNaturalTextActionEntity.getPluginParameters()) {160 if (addonNaturalTextActionParameterEntity.getType() == AddonActionParameterType.ELEMENT) {161 log.info("Setting Element for Addon Plugin Action Step - " + addonNaturalTextActionParameterEntity);162 elementPropertiesEntity = elementsMap.get(addonNaturalTextActionParameterEntity.getReference());163 ElementSearchCriteria elementSearchCriteria = new ElementSearchCriteria(elementPropertiesEntity.getFindByType(),164 elementPropertiesEntity.getLocatorValue());165 Object elementInstance = addonService.getElementInstance(elementPropertiesEntity.getLocatorValue(),166 elementSearchCriteria.getBy());167 FieldUtils.writeField(instance, addonNaturalTextActionParameterEntity.getName(), elementInstance, true);168 setDriver(elementInstance);169 log.info("Setting element instance - " + elementInstance);170 }171 }172 }173 }174 public void setTestData() throws NoSuchMethodException, InstantiationException, IllegalAccessException, InvocationTargetException {175 AddonNaturalTextActionEntity addonNaturalTextActionEntity = testCaseStepEntity.getAddonNaturalTextActionEntity();176 Map<String, TestDataPropertiesEntity> testDataMap = testCaseStepEntity.getTestDataMap();177 if (!testDataMap.isEmpty()) {178 for (AddonNaturalTextActionParameterEntity addonNaturalTextActionParameterEntity : addonNaturalTextActionEntity.getPluginParameters()) {179 if (addonNaturalTextActionParameterEntity.getType() == AddonActionParameterType.TEST_DATA) {180 log.info("Setting Test Data for Addon Plugin Action Step - " + addonNaturalTextActionParameterEntity);181 Object testDataInstance = addonService.getTestDataInstance(testDataMap.get(addonNaturalTextActionParameterEntity182 .getReference()).getTestDataValue());183 FieldUtils.writeField(instance, addonNaturalTextActionParameterEntity.getName(), testDataInstance, true);184 log.info("Setting test data instance - " + testDataInstance);185 }186 }187 }188 }189 private void initRunTimeDataVariable() throws AutomatorException {190 try {191 for (Field field : clazz.getDeclaredFields()) {192 RunTimeData runTimeData = field.getAnnotation(RunTimeData.class);193 if (runTimeData != null) {194 log.info("Initializing Run Time Data for Addon Plugin Action Step - " + runTimeData);195 Object runTimeDataInstance = addonService.getRunTimeDataInstance();196 FieldUtils.writeField(instance, field.getName(), runTimeDataInstance, true);197 log.info("Setting run time data to the main instance - " + field.getName());198 }199 }200 } catch (Exception e) {201 log.error(e.getMessage(), e);202 throw new AutomatorException(e.getMessage(), e);203 }204 }205 private void saveRunTimeData() throws AutomatorException {206 log.info("Saving run time data and sending run time data to provider");207 try {208 for (Field field : clazz.getDeclaredFields()) {209 RunTimeData runTimeData = field.getAnnotation(RunTimeData.class);210 if (runTimeData != null) {211 Field runTimeField = getField(instance.getClass(), field.getName());212 runTimeField.setAccessible(true);213 if (runTimeField != null && runTimeField.get(instance) != null) {214 Field valueField = getField(runTimeField.get(instance).getClass(), "value");215 valueField.setAccessible(true);216 String value = (String) valueField.get(runTimeField.get(instance));217 Field variableNameField = getField(runTimeField.get(instance).getClass(), "key");218 variableNameField.setAccessible(true);219 String variableName = (String) variableNameField.get(runTimeField.get(instance));220 if (variableName != null) {221 runtimeDataProvider.storeRuntimeVariable(variableName, value);222 log.info("Setting run time data to RunTimeData Provider - " + field.getName());223 } else {224 log.info("Skipping run time data to RunTimeData Provider - as the variable name is empty" + field.getName());225 }226 }227 }228 }229 } catch (Exception e) {230 log.error(e.getMessage(), e);231 throw new AutomatorException(e.getMessage(), e);232 }233 }234 private String getSuccessMessageFromSnippet(Object instance) throws NoSuchFieldException, IllegalAccessException {235 Field valueField = getField(instance.getClass(), "successMessage");236 valueField.setAccessible(true);237 return (String) valueField.get(instance);238 }239 private String getErrorMessageFromSnippet(Object instance) throws NoSuchFieldException, IllegalAccessException {240 Field valueField = getField(instance.getClass(), "errorMessage");241 valueField.setAccessible(true);242 return (String) valueField.get(instance);243 }244 private RuntimeDataProvider prepareRunTimeDataProvider() {245 return new RuntimeDataProvider();246 }247 protected void handleException(Exception e) {248 log.error("Exception while executing Action - " + e.getMessage(), e);249 if (e instanceof TimeoutException) {250 setErrorMessage("Element is not available on the page or didn't load with in given wait time. This could " +251 "also be because of element being in a different iframe");252 setErrorCode(ErrorCodes.ELEMENT_TIMEOUT);253 } else if (e instanceof UnreachableBrowserException) {254 setErrorMessage("Unable to perform action. The Web Browser has been closed in a previous step or crashed " +255 "unexpectedly");256 setErrorCode(ErrorCodes.UNREACHABLE_BROWSER);257 } else if (e instanceof IllegalArgumentException) {258 //Assert errors will come here259 setErrorMessage(e.getMessage());260 setErrorCode(ErrorCodes.ASSERT_ERROR);261 } else if (e instanceof SessionNotCreatedException || e instanceof UnreachableBrowserException) {...

Full Screen

Full Screen

handleException

Using AI Code Generation

copy

Full Screen

1import com.testsigma.automator.actions.AddonAction;2AddonAction action = new AddonAction();3action.handleException(e, "Error message");4throw e;5import com.testsigma.automator.actions.AddonAction;6AddonAction action = new AddonAction();7action.handleException(e, "Error message");8throw e;9import com.testsigma.automator.actions.AddonAction;10AddonAction action = new AddonAction();11action.handleException(e, "Error message");12throw e;13import com.testsigma.automator.actions.AddonAction;14AddonAction action = new AddonAction();15action.handleException(e, "Error message");16throw e;17import com.testsigma.automator.actions.AddonAction;18AddonAction action = new AddonAction();19action.handleException(e, "Error message");20throw e;21import com.testsigma.automator.actions.AddonAction;22AddonAction action = new AddonAction();23action.handleException(e, "Error message");24throw e;25import com.testsigma.automator.actions.AddonAction;26AddonAction action = new AddonAction();27action.handleException(e, "Error message");28throw e;29import com.testsigma.automator.actions.AddonAction;30AddonAction action = new AddonAction();31action.handleException(e, "Error message");32throw e;33import com.testsigma.automator.actions.AddonAction;

Full Screen

Full Screen

handleException

Using AI Code Generation

copy

Full Screen

1try {2 AddonAction action = new AddonAction();3 action.handleException(e, "Exception occurred while performing action on element: " + elementName);4} catch (Exception ex) {5 ex.printStackTrace();6}7try {8 AddonAction action = new AddonAction();9 action.handleException(e, "Exception occurred while performing action on element: " + elementName, true);10} catch (Exception ex) {11 ex.printStackTrace();12}13try {14 AddonAction action = new AddonAction();15 action.handleException(e, "Exception occurred while performing action on element: " + elementName, false);16} catch (Exception ex) {17 ex.printStackTrace();18}19try {20 AddonAction action = new AddonAction();21 action.handleException(e, "Exception occurred while performing action on element: " + elementName, false, "custom_message");22} catch (Exception ex) {23 ex.printStackTrace();24}25try {26 AddonAction action = new AddonAction();27 action.handleException(e, "Exception occurred while performing action on element: " + elementName, false, "custom_message", true);28} catch (Exception ex) {29 ex.printStackTrace();30}

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