HTML5 Column Chart Advanced Properties in Jaspersoft Design Studio Pro
To display data labels above the HTML5 column/bar vizz in jasper design studio add the following advanced propertiesPlotOptions > column > dataLabels crop = false enabled=trueoverflow=justify To...
View ArticleHTML-5 Stacked Percentage Bar Chart - Advanced Properties in Jaspersoft...
For HTML-5 Stacked Percentage Bar Chart in Jaspersoft Design Studio How to get percentage on bars ? When there are two percentages, for instance 0 and 100 - how to hide 0 and display only 100% on bar ?...
View ArticleCould not start a new session. Response code 500. Message: unknown error:...
While we were trying to run the automation code in AWS workspaces, we stuck with the following error message and the temporary solution was to add the following argument to the chrome browser....
View ArticleUsage of JVM addShutdownHook in cucumber selenium testng automation to send...
Hi, In this post, we can see how to use JVM shut down hook with in cucumber Hooks. What is JVM shut down hook ? (Definition credits : geeksforgeeks.org)A special construct that facilitates the...
View ArticleCucumber scenarios parallel execution with ThreadLocal driver and dynamic...
Hi, In this post, we will see how to run cucumber scenarios in parallel with TestNG. What is parallel testing in cucumber? Parallel testing in Cucumber refers to the ability to execute Cucumber...
View Articlejava.lang.NoSuchMethodError: 'void...
The following worked for me with the dependencies mentioned in pom.xml If you are on 7.8.0 TestNG downgrade it to 7.7.0or do not take testng dependency rather take cucumber-testng and cucumber-java...
View ArticlePerl script to send html file as an attachment in email | How to send...
Below Perl script with MIME::Lite utility in Cents OS is does the job of sending an email with html attachment. This is one of the basic techniques used to send an automation report after execution...
View ArticleSend latest cucumber report as email notification after automation execution
Hi, In this blog post, we will see the core concept that worked for us to send cucumber report or extent report as notification after running automation. Normally, sending email is done through an...
View ArticleRun newman/postman collection from batch file with html extra report
Hi, using "call" command, one can run newman collection from a batch file. This doesn't require to open Node.js command explicitly. More about call :...
View ArticleReplace in postman java script | replace domain name with ip in url and then...
Let us assume a POST response is returning a URL in header. Now, how to replace the DNS name with IP address and set the URL as environment variable ? Below postman java script does the job. The first...
View ArticleBatch script to execute newman/postman collection on two different...
Hi, batch script below does the following: 1) Delete newman html extra report if already exists in Reports folder under C drive2) Starts two command prompts in the background and calls the node.js to...
View ArticleBatch script to copy newman report from windows machine to linux machine
To copy newman html report (or in general any file) from windows machine to linux machine use below batch script. PuTTY should be installed in the windows(source machine) and pscp.exe should be there...
View ArticleBatch script to run perl file in linux machine | How to connect to linux in...
To run a perl file placed in linux machine from batch file use "plink" utility of PuTTY in batch scripting. As shown below write batch script and as on execution of batch file in windows machine, the...
View ArticleBatch script to run MS SQL server sql commands
Hi, use "sqlcmd" utility in batch script run a set of sql commands/queries through batch script. Make sure to install the following odbc driver and command line utilitymsodbcsql.msi and...
View ArticleWorkaround fix to specify custom download path for ChromeDriver 114 or...
Hi, The following questions and the fix is a work around to download the file to a custom folder in with chrome driver/browser with 114 version Are you getting asked to Save the file while trying to...
View ArticleHow to get currentDate+1day (Tomorrow's date) in m/dd/yyyy format in postman
In Postman Tests section write below code. const currentDate = new Date();currentDate.setDate(currentDate.getDate() + 1);const formattedDate = `${currentDate.getMonth() +...
View Articlejava.lang.NoSuchMethodError: 'void...
When you see below error add : TestNG to the build path [RemoteTestNG] detected TestNG version 7.8.0SLF4J: Failed to load class"org.slf4j.impl.StaticLoggerBinder".SLF4J: Defaulting to no-operation...
View ArticleHow to stop auto downloading of log4j-1.2.12 in selenium , testng, maven...
When you create a new maven project in eclipse and try to update it, you would likely to an auto download of 1.2.12 log4j jar that is variable. One possible reason I came across on this is due to 1.5...
View ArticleTip: Connection Expression for Sub report for XmlDataSource in jasper reports
In an XML data adapter report, when you call a sub report of same data adapter in master report, one can use below expression to establish connection....
View ArticleWindows based authentication using encoded url in selenium cucumber
Use below code to login to an application that uses windows based pop-ups. @Given("Windows based authentication with encoded url") public void loginApp() throws Throwable { String applicationURL =...
View ArticleHow to run power shell script file in selenium cucumber AfterAll hook using...
@AfterAll(order =1)// Cucumber AfterAll hook with order 2publicstaticvoidputFile()throws JSchException, SftpException, IOException, InterruptedException { Log.info("AfterAll - with order=1");...
View ArticlePowerShell script to attach cucumber report and send email by running .ps1 file
Save below code as .ps1 file# How to run .ps1 from command line ? # powershell.exe -ExecutionPolicy Bypass -File qa-smoke-newman.ps1$sendMailFromE1 = @{ From = 'AutomationTeam@email.com' Subject...
View ArticleAzure DevOps CI(Continuous Integration) Pipeline to build selenium with...
YAML script:pool: name: Azure Pipelines demands: mavensteps:- task: Maven@3 displayName: pom.xml inputs: mavenPomFile: UIAutomation/pom.xml goals: 'clean package assembly:single' options:...
View ArticleXPath examples to write in selenium
<p><strong>1. What is an Xpath?</strong></p>//strong[contains(text(),'1. What is an Xpath?']<input data-val="true" data-val-maxlength="Trading Partner Name must not exceed...
View Article