Performance Testing Tools

 LoadNinja : 1)LoadNinja by SmartBear allows you to quickly create scriptless sophisticated load tests, reduce testing time by 50%, replace load emulators with real browsers, and get actionable, browser-based metrics, all at ninja speed.  2)You can easily capture client-side interactions, debug in real-time, and identify performance problems immediately.  3)LoadNinja empowers teams to increase their test coverage… Continue reading Performance Testing Tools

Timesheet Error

When adding weekly timesheet in Netsuite it shows error as below. Solution Check the employee record details of employees who can’t enter the timesheet. If he is an inactive employee this error will be populated by the system. To check this, Navigate to List> Employees> Employees  Check the box show inactive. If the inactive box… Continue reading Timesheet Error

Process the Settlement Flow Error in Celigo

Issue When we run the Celigo Settlement flow, there occurs an error which shows a settlement_order_not_found with message “NetSuite transaction could not be found. Settlement details: Settlement Id# 15460107661, Amazon AFN Order# 114-8511691-4140214.” Solution In this case, we need to copy the Amazon AFN Order# from the error list and need to import that id… Continue reading Process the Settlement Flow Error in Celigo

How to automate the captcha

Here is the stepwise working solution  Step1- Add dependency for net.sourceforge.tess4j  Step2- Download and keep “eng.traineddata” file in your project directory  Step3-  //Create one folder to store captcha image and assign that path to Variable Stringpath_stud_captcha=”C:/Users/shrad/.eclipse/Cucumber/src/test/resources/captcha_images/c ap.png”;  //Inspect and store captcha element  WebElement wb_stud=driver.findElement(By.xpath(“//div[@class=’style_captchaContainer   LdFYB’]”));  //Give some wait  Thread.sleep(3000);  //Get screenshot of captcha element  File… Continue reading How to automate the captcha