How to use load method of com.qaprosoft.carina.core.foundation.utils.resources.L10N class

Best Carina code snippet using com.qaprosoft.carina.core.foundation.utils.resources.L10N.load

Source:AbstractTest.java Github

copy

Full Screen

...183 // moved from UITest->executeBeforeTestSuite184 String customCapabilities = Configuration.get(Parameter.CUSTOM_CAPABILITIES);185 if (!customCapabilities.isEmpty()) {186 //redefine core properties using custom capabilities file187 Map<String, String> properties = Configuration.loadCoreProperties(customCapabilities);188 //reregister device if mobile core properties are redefined 189 DevicePool.addDevice(properties);190 }191 }192 193 @BeforeClass(alwaysRun = true)194 public void executeBeforeTestClass(ITestContext context) throws Throwable {195 // do nothing for now196 }197 @AfterClass(alwaysRun = true)198 public void executeAfterTestClass(ITestContext context) throws Throwable {199 if (Configuration.getDriverMode() == DriverMode.CLASS_MODE) {200 LOGGER.debug("Deinitialize driver(s) in UITest->AfterClass.");201 quitDrivers();202 }203 }204 @BeforeMethod(alwaysRun = true)205 public void executeBeforeTestMethod(XmlTest xmlTest, Method testMethod,206 ITestContext context) throws Throwable {207 // do nothing for now208 Spira.registerStepsFromAnnotation(testMethod);209 210 apiMethodBuilder = new APIMethodBuilder();211 }212 213 214 @AfterMethod(alwaysRun = true)215 public void executeAfterTestMethod(ITestResult result) {216 try {217 DriverMode driverMode = Configuration.getDriverMode();218 if (driverMode == DriverMode.METHOD_MODE) {219 LOGGER.debug("Deinitialize driver(s) in @AfterMethod.");220 quitDrivers();221 }222 // TODO: improve later removing duplicates with AbstractTestListener223 //handle Zafira already passed exception for re-run and do nothing. maybe return should be enough224 if (result.getThrowable() != null && result.getThrowable().getMessage() != null225 && result.getThrowable().getMessage().startsWith(SpecialKeywords.ALREADY_PASSED)) {226 // [VD] it is prohibited to release TestInfoByThread in this place.!227 return;228 }229 //handle AbstractTest->SkipExecution230 if (result.getThrowable() != null && result.getThrowable().getMessage() != null231 && result.getThrowable().getMessage().startsWith(SpecialKeywords.SKIP_EXECUTION)) {232 // [VD] it is prohibited to release TestInfoByThread in this place.!233 return;234 }235 String test = TestNamingUtil.getCanonicalTestName(result);236 List<String> tickets = Jira.getTickets(result);237 result.setAttribute(SpecialKeywords.JIRA_TICKET, tickets);238 Jira.updateAfterTest(result);239 // Populate Spira Steps240 Spira.updateAfterTest(result, (String) result.getTestContext().getAttribute(SpecialKeywords.TEST_FAILURE_MESSAGE), tickets);241 Spira.clear();242 // Populate TestRail Cases243 if (!R.ZAFIRA.getBoolean("zafira_enabled")){244 result.setAttribute(SpecialKeywords.TESTRAIL_CASES_ID, TestRail.getCases(result));245 TestRail.updateAfterTest(result, (String) result.getTestContext().getAttribute(SpecialKeywords.TEST_FAILURE_MESSAGE));246 TestRail.clearCases();247 }248 //we shouldn't deregister info here as all retries will not work249 //TestNamingUtil.releaseZafiraTest();250 // clear jira tickets to be sure that next test is not affected.251 Jira.clearTickets();252 Artifacts.clearArtifacts();253 try {254 ThreadLogAppender tla = (ThreadLogAppender) Logger.getRootLogger().getAppender("ThreadLogAppender");255 if (tla != null) {256 tla.closeResource(test);257 }258 } catch (NoSuchMethodError e) {259 LOGGER.error("Unable to redefine logger level due to the conflicts between log4j and slf4j!");260 }261 } catch (Exception e) {262 LOGGER.error("Exception in AbstractTest->executeAfterTestMethod: " + e.getMessage());263 e.printStackTrace();264 }265 }266 @AfterSuite(alwaysRun = true)267 public void executeAfterTestSuite(ITestContext context) {268 try {269 if (Configuration.getDriverMode() == DriverMode.SUITE_MODE) {270 LOGGER.debug("Deinitialize driver(s) in UITest->AfterSuite.");271 quitDrivers(); 272 }273 ReportContext.removeTempDir(); //clean temp artifacts directory274 HtmlReportGenerator.generate(ReportContext.getBaseDir().getAbsolutePath());275 String browser = getBrowser();276 String deviceName = getDeviceName();277 String suiteName = getSuiteName(context);278 String title = getTitle(context);279 TestResultType testResult = EmailReportGenerator.getSuiteResult(EmailReportItemCollector.getTestResults());280 String status = testResult.getName();281 title = status + ": " + title;282 String env = "";283 if (!Configuration.isNull(Parameter.ENV)) {284 env = Configuration.get(Parameter.ENV);285 }286 if (!Configuration.get(Parameter.URL).isEmpty()) {287 env += " - <a href='" + Configuration.get(Parameter.URL) + "'>" + Configuration.get(Parameter.URL) + "</a>";288 }289 ReportContext.getTempDir().delete();290 // Update JIRA291 Jira.updateAfterSuite(context, EmailReportItemCollector.getTestResults());292 // Update Spira293 Spira.updateAfterSuite(this.getClass().getName(), testResult, title + "; " + getCIJobReference(), suiteName, startDate);294 //generate and send email report by Zafira to test group of people295 String emailList = Configuration.get(Parameter.EMAIL_LIST);296 String failureEmailList = Configuration.get(Parameter.FAILURE_EMAIL_LIST);297 String senderEmail = Configuration.get(Parameter.SENDER_EMAIL);298 String senderPassword = Configuration.get(Parameter.SENDER_PASSWORD);299 // Generate and send email report using regular method300 EmailReportGenerator report = new EmailReportGenerator(title, env,301 Configuration.get(Parameter.APP_VERSION), deviceName,302 browser, DateUtils.now(), DateUtils.timeDiff(startDate), getCIJobReference(),303 EmailReportItemCollector.getTestResults(),304 EmailReportItemCollector.getCreatedItems());305 String emailContent = report.getEmailBody();306 307 if (!R.ZAFIRA.getBoolean("zafira_enabled")) {308 //Do not send email if run is running with enabled Zafira309 EmailManager.send(title, emailContent,310 emailList,311 senderEmail,312 senderPassword);313 314 if (testResult.equals(TestResultType.FAIL) && !failureEmailList.isEmpty()) {315 EmailManager.send(title, emailContent,316 failureEmailList,317 senderEmail,318 senderPassword);319 }320 }321 // Store emailable report under emailable-report.html322 ReportContext.generateHtmlReport(emailContent);323 printExecutionSummary(EmailReportItemCollector.getTestResults());324 TestResultType suiteResult = EmailReportGenerator.getSuiteResult(EmailReportItemCollector.getTestResults());325 switch (suiteResult) {326 case SKIP_ALL:327 Assert.fail("All tests were skipped! Analyze logs to determine possible configuration issues.");328 break;329 case SKIP_ALL_ALREADY_PASSED:330 LOGGER.info("Nothing was executed in rerun mode because all tests already passed and registered in Zafira Repoting Service!");331 break;332 default:333 //do nothing334 }335 336 } catch (Exception e) {337 LOGGER.error("Exception in AbstractTest->executeAfterSuite: " + e.getMessage());338 e.printStackTrace();339 }340 }341 private String getDeviceName() {342 String deviceName = "Desktop";343 if (Configuration.get(Parameter.DRIVER_TYPE).toLowerCase().contains(SpecialKeywords.MOBILE)) {344 //Samsung - Android 4.4.2; iPhone - iOS 7345 String deviceTemplate = "%s - %s %s";346 deviceName = String.format(deviceTemplate, Configuration.get(Parameter.MOBILE_DEVICE_NAME), Configuration.get(Parameter.MOBILE_PLATFORM_NAME), Configuration.get(Parameter.MOBILE_PLATFORM_VERSION));347 }348 return deviceName;349 }350 protected String getBrowser() {351 String browser = "";352 if (!Configuration.get(Parameter.BROWSER).isEmpty()) {353 browser = Configuration.get(Parameter.BROWSER);354 }355 if (!browserVersion.isEmpty()) {356 browser = browser + " " + browserVersion;357 }358 return browser;359 }360 protected String getTitle(ITestContext context) {361 String browser = getBrowser();362 if (!browser.isEmpty()) {363 browser = " " + browser; //insert the space before364 }365 String device = getDeviceName();366 String env = !Configuration.isNull(Parameter.ENV) ? Configuration.get(Parameter.ENV) : Configuration.get(Parameter.URL);367 String title = "";368 String app_version = "";369 if (!Configuration.get(Parameter.APP_VERSION).isEmpty()) {370 // if nothing is specified then title will contain nothing371 app_version = Configuration.get(Parameter.APP_VERSION) + " - ";372 }373 String suiteName = getSuiteName(context);374 String xmlFile = getSuiteFileName(context);375 title = String.format(SUITE_TITLE, app_version, suiteName, String.format(XML_SUITE_NAME, xmlFile), env, device, browser);376 return title;377 }378 private String getSuiteFileName(ITestContext context) {379 String fileName = context.getSuite().getXmlSuite().getFileName();380 LOGGER.debug("Full suite file name: " + fileName);381 if (fileName.contains("\\")) {382 fileName = fileName.replaceAll("\\\\", "/");383 }384 fileName = StringUtils.substringAfterLast(fileName, "/");385 LOGGER.debug("Short suite file name: " + fileName);386 return fileName;387 }388 protected String getSuiteName(ITestContext context) {389 String suiteName = "";390 if (context.getSuite().getXmlSuite() != null && !"Default suite".equals(context.getSuite().getXmlSuite().getName())) {391 suiteName = Configuration.get(Parameter.SUITE_NAME).isEmpty() ? context.getSuite().getXmlSuite().getName()392 : Configuration.get(Parameter.SUITE_NAME);393 } else {394 suiteName = Configuration.get(Parameter.SUITE_NAME).isEmpty() ? R.EMAIL.get("title") : Configuration.get(Parameter.SUITE_NAME);395 }396 String appender = getSuiteNameAppender();397 if (appender != null && !appender.isEmpty()) {398 suiteName = suiteName + " - " + appender;399 }400 return suiteName;401 }402 protected void setSuiteNameAppender(String appender) {403 suiteNameAppender.set(appender);404 }405 protected String getSuiteNameAppender() {406 return suiteNameAppender.get();407 }408 private void printExecutionSummary(List<TestResultItem> tris) {409 Messager.INROMATION410 .info("**************** Test execution summary ****************");411 int num = 1;412 for (TestResultItem tri : tris) {413 String failReason = tri.getFailReason();414 if (failReason == null) {415 failReason = "";416 }417 if (!tri.isConfig() && !failReason.contains(SpecialKeywords.ALREADY_PASSED)418 && !failReason.contains(SpecialKeywords.SKIP_EXECUTION)) {419 String reportLinks = !StringUtils.isEmpty(tri.getLinkToScreenshots())420 ? "screenshots=" + tri.getLinkToScreenshots() + " | " : "";421 reportLinks += !StringUtils.isEmpty(tri.getLinkToLog()) ? "log=" + tri.getLinkToLog() : "";422 Messager.TEST_RESULT.info(String.valueOf(num++), tri.getTest(), tri.getResult().toString(),423 reportLinks);424 }425 }426 }427 private String getCIJobReference() {428 String ciTestJob = null;429 if (!Configuration.isNull(Parameter.CI_URL)430 && !Configuration.isNull(Parameter.CI_BUILD)) {431 ciTestJob = Configuration.get(Parameter.CI_URL)432 + Configuration.get(Parameter.CI_BUILD);433 }434 return ciTestJob;435 }436 /**437 * Redefine Jira tickets from test.438 *439 * @param tickets to set440 */441 @Deprecated442 protected void setJiraTicket(String... tickets) {443 List<String> jiraTickets = new ArrayList<String>();444 for (String ticket : tickets) {445 jiraTickets.add(ticket);446 }447 Jira.setTickets(jiraTickets);448 }449 /**450 * Redefine TestRails cases from test.451 *452 * @param cases to set453 */454 protected void setTestRailCase(String... cases) {455 TestRail.setCasesID(cases);456 }457 @DataProvider(name = "DataProvider", parallel = true)458 public Object[][] createData(final ITestNGMethod testMethod, ITestContext context)459 {460 Annotation[] annotations = testMethod.getConstructorOrMethod().getMethod().getDeclaredAnnotations();461 Object[][] objects = DataProviderFactory.getNeedRerunDataProvider(annotations, context, testMethod);462 return objects;463 }464 @DataProvider(name = "SingleDataProvider")465 public Object[][] createDataSingeThread(final ITestNGMethod testMethod,466 ITestContext context) {467 Annotation[] annotations = testMethod.getConstructorOrMethod().getMethod().getDeclaredAnnotations();468 Object[][] objects = DataProviderFactory.getNeedRerunDataProvider(annotations, context, testMethod);469 return objects;470 }471 /**472 * Pause for specified timeout.473 *474 * @param timeout in seconds.475 */476 public void pause(long timeout) {477 try {478 Thread.sleep(timeout * 1000);479 } catch (InterruptedException e) {480 e.printStackTrace();481 }482 }483 public void pause(Double timeout) {484 try {485 timeout = timeout * 1000;486 long miliSec = timeout.longValue();487 Thread.sleep(miliSec);488 } catch (InterruptedException e) {489 e.printStackTrace();490 }491 }492 protected void putS3Artifact(String key, String path) {493 AmazonS3Manager.getInstance().put(Configuration.get(Parameter.S3_BUCKET_NAME), key, path);494 }495 protected S3Object getS3Artifact(String bucket, String key) {496 return AmazonS3Manager.getInstance().get(Configuration.get(Parameter.S3_BUCKET_NAME), key);497 }498 protected S3Object getS3Artifact(String key) {499 return getS3Artifact(Configuration.get(Parameter.S3_BUCKET_NAME), key);500 }501 /**502 * Method to update MOBILE_APP path in case if apk is located in s3 bucket.503 */504 private void updateS3AppPath() {505 Pattern S3_BUCKET_PATTERN = Pattern.compile("s3:\\/\\/([a-zA-Z-0-9][^\\/]*)\\/(.*)");506 // get app path to be sure that we need(do not need) to download app507 // from s3 bucket508 String mobileAppPath = Configuration.get(Parameter.MOBILE_APP);509 Matcher matcher = S3_BUCKET_PATTERN.matcher(mobileAppPath);510 LOGGER.info("Analyzing if mobile_app is located on S3...");511 if (matcher.find()) {512 LOGGER.info("app artifact is located on s3...");513 String bucketName = matcher.group(1);514 String key = matcher.group(2);515 Pattern pattern = Pattern.compile(key);516 // analyze if we have any pattern inside mobile_app to make extra517 // search in AWS518 int position = key.indexOf(".*");519 if (position > 0) {520 // /android/develop/dfgdfg.*/Mapmyrun.apk521 int slashPosition = key.substring(0, position).lastIndexOf("/");522 if (slashPosition > 0) {523 key = key.substring(0, slashPosition);524 S3ObjectSummary lastBuild = AmazonS3Manager.getInstance().getLatestBuildArtifact(bucketName, key,525 pattern);526 key = lastBuild.getKey();527 }528 }529 S3Object objBuild = AmazonS3Manager.getInstance().get(bucketName, key);530 String s3LocalStorage = Configuration.get(Parameter.S3_LOCAL_STORAGE);531 String fileName = s3LocalStorage + "/" + StringUtils.substringAfterLast(objBuild.getKey(), "/");532 File file = new File(fileName);533 // verify maybe requested artifact with the same size was already534 // download535 if (file.exists() && file.length() == objBuild.getObjectMetadata().getContentLength()) {536 LOGGER.info("build artifact with the same size already downloaded: " + file.getAbsolutePath());537 } else {538 LOGGER.info(String.format("Following data was extracted: bucket: %s, key: %s, local file: %s", bucketName, key,539 file.getAbsolutePath()));540 AmazonS3Manager.getInstance().download(bucketName, key, new File(fileName));541 }542 R.CONFIG.put(Parameter.MOBILE_APP.getKey(), file.getAbsolutePath());543 LOGGER.info("Updated mobile_app: " + Configuration.get(Parameter.MOBILE_APP));544 }545 }546 protected void setBug(String id) {547 String test = TestNamingUtil.getTestNameByThread();548 TestNamingUtil.associateBug(test, id);549 }550 protected void skipExecution(String message) {551 throw new SkipException(SpecialKeywords.SKIP_EXECUTION + ": " + message);552 }553 // --------------------------------------------------------------------------554 // Web Drivers...

Full Screen

Full Screen

Source:L10N.java Github

copy

Full Screen

...33import com.qaprosoft.carina.core.foundation.utils.Configuration;34import com.qaprosoft.carina.core.foundation.utils.Configuration.Parameter;35import com.qaprosoft.carina.core.foundation.utils.IWebElement;36/*37 * http://maven.apache.org/surefire/maven-surefire-plugin/examples/class-loading.html38 * Need to set useSystemClassLoader=false for maven surefire plugin to receive access to L10N files on CI by ClassLoader39 * <plugin>40 * <groupId>org.apache.maven.plugins</groupId>41 * <artifactId>maven-surefire-plugin</artifactId>42 * <version>3.0.0-M4</version>43 * <configuration>44 * <useSystemClassLoader>false</useSystemClassLoader>45 * </configuration>46 */47public class L10N {48 private static final Logger LOGGER = LoggerFactory.getLogger(MethodHandles.lookup().lookupClass());49 50 private static Locale locale = getLocale(Configuration.get(Configuration.Parameter.LOCALE));51 private static ArrayList<ResourceBundle> resBoundles = new ArrayList<ResourceBundle>();52 private static Properties missedResources = new Properties();53 54 private static SoftAssert mistakes;55 /**56 * Load L10N resource bundle corresponding to a specific locale.57 * If called setLocale function in the test, must be called to reload resources58 */ 59 public static void load() {60 // #1679: L10N: made assertion threads dependent61 mistakes = new SoftAssert();62 List<String> loadedResources = new ArrayList<String>();63 try {64 for (URL u : Resources.getResourceURLs(new ResourceURLFilter() {65 public @Override66 boolean accept(URL u) {67 String s = u.getPath();68 boolean contains = s.contains(SpecialKeywords.L10N);69 if (contains) {70 LOGGER.debug("L10N: file URL: " + u);71 }72 return contains;73 }74 })) {75 LOGGER.debug(String.format(76 "Analyzing '%s' L10N resource for loading...", u));77 /*78 * 2. Exclude localization resources like such L10N.messages_de, L10N.messages_ptBR etc...79 * Note: we ignore valid resources if 3rd or 5th char from the end is "_". As designed :(80 */81 String fileName = FilenameUtils.getBaseName(u.getPath());82 if (u.getPath().endsWith("L10N.class")83 || u.getPath().endsWith("L10N$1.class")) {84 // separate conditions to support core JUnit tests85 continue;86 }87 if (fileName.lastIndexOf('_') == fileName.length() - 388 || fileName.lastIndexOf('_') == fileName.length() - 5) {89 LOGGER.debug(String90 .format("'%s' resource IGNORED as it looks like localized resource!",91 fileName));92 continue;93 }94 /*95 * convert "file: <REPO>\target\classes\L10N\messages.properties" to "L10N.messages"96 */97 String filePath = FilenameUtils.getPath(u.getPath());98 int index = filePath.indexOf(SpecialKeywords.L10N);99 if (index == -1) {100 LOGGER.warn("Unable to find L10N pattern for " + u.getPath() + " resource!");101 continue;102 }103 String resource = filePath.substring(104 filePath.indexOf(SpecialKeywords.L10N))105 .replaceAll("/", ".")106 + fileName;107 if (!loadedResources.contains(resource)) {108 loadedResources.add(resource);109 try {110 LOGGER.debug(String.format("Adding '%s' resource...",111 resource));112 113 resBoundles.add(ResourceBundle.getBundle(resource, locale));114 LOGGER.debug(String115 .format("Resource '%s' added.", resource));116 } catch (MissingResourceException e) {117 LOGGER.debug("No resource bundle for the " + resource + " can be found", e);118 }119 } else {120 LOGGER.debug(String121 .format("Requested resource '%s' is already loaded into the ResourceBundle!",122 resource));123 }124 }125 LOGGER.debug("init: L10N bundle size: " + resBoundles.size());126 } catch (IllegalArgumentException e) {127 LOGGER.debug("L10N folder with resources is missing!");128 }129 }130 /**131 * Replace default L10N resource bundle.132 *133 * @param resources ArrayList134 *135 */ 136 public static void load(ArrayList<ResourceBundle> resources) {137 // #1679: L10N: made assertion threads dependent138 mistakes = new SoftAssert();139 resBoundles = resources;140 }141 142 /**143 * Return translated value by key for default locale.144 *145 * @param key String146 *147 * @return String148 */149 static public String getText(String key) {150 LOGGER.debug("getText: L10N bundle size: " + resBoundles.size());...

Full Screen

Full Screen

load

Using AI Code Generation

copy

Full Screen

1package com.qaprosoft.carina.demo;2import org.testng.Assert;3import org.testng.annotations.Test;4import com.qaprosoft.carina.core.foundation.utils.resources.L10N;5public class L10NTest {6public void testL10N() {7L10N.load("l10n.properties");8String value = L10N.get("key");9Assert.assertEquals(value, "value", "property value is incorrect");10}11}12package com.qaprosoft.carina.demo;13import org.testng.Assert;14import org.testng.annotations.Test;15import com.qaprosoft.carina.core.foundation.utils.resources.L10N;16public class L10NTest {17public void testL10N() {18L10N.load("l10n.properties");19String value = L10N.get("key");20Assert.assertEquals(value, "value", "property value is incorrect");21}22}23package com.qaprosoft.carina.demo;24import org.testng.Assert;25import org.testng.annotations.Test;26import com.qaprosoft.carina.core.foundation.utils.resources.L10N;27public class L10NTest {28public void testL10N() {29L10N.load("l10n.properties");30String value = L10N.get("key");31Assert.assertEquals(value, "value", "property value is incorrect");32}33}34package com.qaprosoft.carina.demo;35import org.testng.Assert;36import org.testng.annotations.Test;37import com.qaprosoft.carina.core.foundation.utils.resources.L10N;38public class L10NTest {39public void testL10N() {40L10N.load("l10n.properties");41String value = L10N.get("key");

Full Screen

Full Screen

load

Using AI Code Generation

copy

Full Screen

1package com.qaprosoft.carina.demo;2import org.testng.Assert;3import org.testng.annotations.Test;4import com.qaprosoft.carina.core.foundation.utils.resources.L10N;5public class L10NTest {6 public void testL10N() {7 String actual = L10N.load("l10n.locators");8 Assert.assertNotNull(actual, "Loaded l10n.locators file.");9 }10}11package com.qaprosoft.carina.demo;12import org.testng.Assert;13import org.testng.annotations.Test;14import com.qaprosoft.carina.core.foundation.utils.resources.L10N;15public class L10NTest { 16 public void testL10N() {17 String actual = L10N.load("l10n.locators");18 Assert.assertNotNull(actual, "Loaded l10n.locators file.");19 }20}21package com.qaprosoft.carina.demo;22import org.testng.Assert;23import org.testng.annotations.Test;24import com.qaprosoft.carina.core.foundation.utils.resources.L10N;25public class L10NTest {26 public void testL10N() {27 String actual = L10N.load("l10n.locators");28 Assert.assertNotNull(actual, "Loaded l10n.locators file.");29 }30}31package com.qaprosoft.carina.demo;32import org.testng.Assert;33import org.testng.annotations.Test;34import com.qaprosoft.carina.core.foundation.utils.resources.L10N;35public class L10NTest {36 public void testL10N() {37 String actual = L10N.load("l10n.locators");38 Assert.assertNotNull(actual, "Loaded l10n.locators file.");39 }40}41package com.qaprosoft.carina.demo;42import org.testng.Assert;43import org.testng.annotations.Test;44import com.qaprosoft.carina.core.foundation.utils.resources.L10N;

Full Screen

Full Screen

load

Using AI Code Generation

copy

Full Screen

1L10N.load("1");2String text = L10N.get("text");3String text = L10N.get("text", "parameter1", "parameter2");4{5 "text": "Text is {0} and {1}"6}7text=Text is {0} and {1}8text: Text is {0} and {1}9<text>Text is {0} and {1}</text>10Text is {0} and {1}11text=Text is {0} and {1}12{13 "text": "Text is {0} and {1}"14}15text: Text is {0} and {1}16<text>Text is {0} and {1}</text>17Text is {0} and {1}18text=Text is {0} and {1}19{20 "text": "Text is {0} and {1}"21}22text: Text is {0} and {1}23<text>Text is {0} and {1}</text>24Text is {0} and {1}25text=Text is {0} and {1}26{27 "text": "Text is {0} and {1}"28}29text: Text is {0} and {1}30<text>Text is {0} and {1}</text>31Text is {0} and {1}32text=Text is {0} and {1}33{

Full Screen

Full Screen

load

Using AI Code Generation

copy

Full Screen

1import com.qaprosoft.carina.core.foundation.utils.resources.L10N;2public class L10NTest {3 public static void main(String[] args) {4 String text = L10N.load("test.text");5 System.out.println(text);6 }7}8import com.qaprosoft.carina.core.foundation.utils.resources.L10N;9public class L10NTest {10 public static void main(String[] args) {11 String text = L10N.load("test.text.params", "Carina");12 System.out.println(text);13 }14}15import com.qaprosoft.carina.core.foundation.utils.resources.L10N;16public class L10NTest {17 public static void main(String[] args) {18 String text = L10N.load("test.text.params", "Carina", "de");19 System.out.println(text);20 }21}22import com.qaprosoft.carina.core.foundation.utils.resources.L10N;23public class L10NTest {24 public static void main(String[] args) {25 String text = L10N.load("test.text.params", "Carina", "de");26 System.out.println(text);27 }28}29import com.qaprosoft.carina.core.foundation.utils.resources.L10N;30public class L10NTest {31 public static void main(String[] args) {32 String text = L10N.load("test.text.params", "Carina", "de");33 System.out.println(text);34 }35}36import com.qapro

Full Screen

Full Screen

load

Using AI Code Generation

copy

Full Screen

1L10N.load("my.properties");2L10N.load("my.properties", Locale.US);3L10N.load("my.properties", Locale.US, "UTF-8");4L10N.load("my.properties", Locale.US, "UTF-8", "myclass");5L10N.load("my.properties", Locale.US, "UTF-8", "myclass", "myclassloader");6L10N.load("my.properties", Locale.US, "UTF-8", "myclass", "myclassloader", false);7L10N.load("my.properties", Locale.US, "UTF-8", "myclass", "myclassloader", false, null);8L10N.load("my.properties", Locale.US, "UTF-8", "myclass", "myclassloader", false, null, null);9L10N.load("my.properties", Locale.US, "UTF-8", "myclass", "myclassloader", false, null, null, null);10L10N.load("my.properties", Locale.US, "UTF-8", "myclass", "myclassloader", false, null, null, null, null);11L10N.load("my.properties", Locale.US, "UTF-8", "myclass", "myclassloader", false, null, null, null, null, null);

Full Screen

Full Screen

load

Using AI Code Generation

copy

Full Screen

1package com.qaprosoft.carina.demo.gui.pages;2import com.qaprosoft.carina.core.foundation.utils.resources.L10N;3import org.openqa.selenium.WebDriver;4import org.openqa.selenium.support.FindBy;5import org.openqa.selenium.support.ui.ExpectedConditions;6import org.openqa.selenium.support.ui.WebDriverWait;7import org.testng.Assert;8import org.testng.annotations.Test;9import com.qaprosoft.carina.core.foundation.webdriver.decorator.ExtendedWebElement;10import com.qaprosoft.carina.core.gui.AbstractPage;11public class HomePage extends AbstractPage {12 private ExtendedWebElement loginBtn;13 public HomePage(WebDriver driver) {14 super(driver);15 }16 public HomePage(WebDriver driver, WebDriverWait wait) {17 super(driver, wait);18 }19 public void verifyHomePageTitle() {20 Assert.assertEquals(getTitle(), L10N.load("HomePage.title"));21 }22 public LoginPage openLoginPage() {23 loginBtn.click();24 return new LoginPage(driver, wait);25 }26}27package com.qaprosoft.carina.demo.gui.pages;28import com.qaprosoft.carina.core.foundation.utils.resources.L10N;29import org.openqa.selenium.WebDriver;30import org.openqa.selenium.support.FindBy;31import org.openqa.selenium.support.ui.ExpectedConditions;32import org.openqa.selenium.support.ui.WebDriverWait;33import org.testng.Assert;34import org.testng.annotations.Test;35import com.qaprosoft.carina.core.foundation.webdriver.decorator.ExtendedWebElement;36import com.qaprosoft.carina.core.gui.AbstractPage;37public class LoginPage extends AbstractPage {38 private ExtendedWebElement emailInput;39 private ExtendedWebElement continueBtn;40 public LoginPage(WebDriver driver) {41 super(driver);

Full Screen

Full Screen

load

Using AI Code Generation

copy

Full Screen

1import com.qaprosoft.carina.core.foundation.utils.resources.L10N;2public class 1 {3 public static void main(String[] args) {4 System.out.println(L10N.load("loc.common.name"));5 }6}7import com.qaprosoft.carina.core.foundation.utils.resources.L10N;8public class 2 {9 public static void main(String[] args) {10 System.out.println(L10N.load("loc.common.name"));11 }12}13import com.qaprosoft.carina.core.foundation.utils.resources.L10N;14public class 3 {15 public static void main(String[] args) {16 System.out.println(L10N.load("loc.common.name"));17 }18}19import com.qaprosoft.carina.core.foundation.utils.resources.L10N;20public class 4 {21 public static void main(String[] args) {22 System.out.println(L10N.load("loc.common.name"));23 }24}25import com.qaprosoft.carina.core.foundation.utils.resources.L10N;26public class 5 {27 public static void main(String[] args) {28 System.out.println(L10N.load("loc.common.name"));29 }30}31import com.qaprosoft.carina.core.foundation.utils.resources.L10N;32public class 6 {33 public static void main(String[] args) {34 System.out.println(L10N.load("loc.common.name"));35 }36}37import com.qaprosoft.carina.core.foundation.utils.resources.L10N;38public class 7 {39 public static void main(String[] args) {40 System.out.println(L10N.load("loc.common.name"));41 }42}

Full Screen

Full Screen

load

Using AI Code Generation

copy

Full Screen

1package com.qaprosoft.carina.demo;2import org.testng.Assert;3import org.testng.annotations.Test;4import com.qaprosoft.carina.core.foundation.utils.resources.L10N;5public class TestL10N {6 public void testLoad() {7 String text = L10N.load("text.txt");8 Assert.assertEquals(text, "Hello World!");9 }10}

Full Screen

Full Screen

load

Using AI Code Generation

copy

Full Screen

1L10N.load("/path/to/your/file.properties");2L10N.load("/path/to/your/file.properties", "UTF-8");3L10N.load("/path/to/your/file.properties", "UTF-8", "en");4L10N.load("file.properties");5L10N.load("file.properties", "UTF-8");6L10N.load("file.properties", "UTF-8", "en");7L10N.load("file");8L10N.load("file", "UTF-8");9L10N.load("file", "UTF-8", "en");10L10N.load("file", "UTF-8", "en", "/path/to/your");11L10N.load("file", "UTF-8", "en", "/path/to/your", "com.qaprosoft.carina.demo.gui");12L10N.load("file", "UTF-8", "en", "/path/to/your", "com.qaprosoft.carina.demo.gui", "com.qaprosoft.carina.demo.mobile.gui");13L10N.load("file", "UTF-8", "en", "/path/to/your", "com.qaprosoft.carina.demo.gui", "com.qaprosoft.carina.demo.mobile.gui", "com.qaprosoft.carina.demo.api");14L10N.load("file", "UTF-8", "en", "/path/to/your", "com.qaprosoft.carina.demo.gui", "com.qaprosoft.carina.demo.mobile.gui", "com.qaprosoft.carina.demo.api", "com.qaprosoft.carina.demo.web.gui");

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 Carina 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