How to use checkStarts method of com.galenframework.validation.specs.SpecValidationOcr class

Best Galen code snippet using com.galenframework.validation.specs.SpecValidationOcr.checkStarts

Source:SpecValidationOcr.java Github

copy

Full Screen

...66 if (spec.getType() == SpecOcr.Type.CONTAINS) {67 checkContains(objectName, area, realText, spec.getText(), checkEntity);68 }69 else if (spec.getType() == SpecOcr.Type.STARTS) {70 checkStarts(objectName, area, realText, spec.getText(), checkEntity);71 }72 else if (spec.getType() == SpecOcr.Type.ENDS) {73 checkEnds(objectName, area, realText, spec.getText(), checkEntity);74 }75 else if (spec.getType() == SpecOcr.Type.MATCHES) {76 checkMatches(objectName, area, realText, spec.getText(), checkEntity);77 }78 }79 protected void checkIs(String objectName, Rect area, String realText, String text, String checkEntity) throws ValidationErrorException {80 if(realText.equals(text)){81 return;82 }83 throw new ValidationErrorException(asList(new ValidationObject(area, objectName)), asList(format("\"%s\" %s is \"%s\" but should be \"%s\"", objectName, checkEntity, realText, text)));84 }85 protected void checkStarts(String objectName, Rect area, String realText, String text, String checkEntity) throws ValidationErrorException {86 if (!realText.startsWith(text)) {87 throw new ValidationErrorException(asList(new ValidationObject(area, objectName)), asList(format("\"%s\" %s is \"%s\" but should start with \"%s\"", objectName, checkEntity, realText, text)));88 }89 }90 91 protected void checkEnds(String objectName, Rect area, String realText, String text, String checkEntity) throws ValidationErrorException {92 if (!realText.endsWith(text)) {93 throw new ValidationErrorException(asList(new ValidationObject(area, objectName)), asList(format("\"%s\" %s is \"%s\" but should end with \"%s\"", objectName, checkEntity, realText, text)));94 }95 }96 97 protected void checkMatches(String objectName, Rect area, String realText, String text, String checkEntity) throws ValidationErrorException {98 Pattern regex = Pattern.compile(text, Pattern.DOTALL);99 if (!regex.matcher(realText).matches()) {...

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.

Run Galen automation tests on LambdaTest cloud grid

Perform automation testing on 3000+ real desktop and mobile devices online.

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful