Angular Gauge fusion widget demo in jasper reports (7.1.1 studio)
Sample outputJRXML (Copy paste this below xml in your environment)<?xml version="1.0" encoding="UTF-8"?><!-- Created with Jaspersoft Studio version 7.2.0.final using JasperReports Library...
View ArticleTip : Styled Markup for color and font size together in Jaspersoft Studio...
In J.Design Studio: Drag a text field (not static text) and in the properties give Markup=StyledExpression inside text field :"<style forecolor='#ffffff' size='14'> Hi,I am red in...
View ArticleTip : ampersand for Styled Markup in text field expression in Japsersoft...
Wrong :"<style forecolor='#ffffff' size='14'>Sadakar & Rohit </style>"Correct :"<style forecolor='#ffffff' size='14'>Sadakar & Rohit </style>"Reason: Styled Markup...
View ArticleTip : Page numbers of report having sub reports in Jaspersoft Design Studio...
Master/Parent Report : * Call all the sub reports from Master Report.* It is not required to give any variables in Mater report to get the page numbers (at least in this example)Sub Report-1 : * In Sub...
View ArticleTip : How to remove Y1 and Y2 axis labels on dual axis chart in jaspersoft...
Problem Statement: Take a look at the below snapshot. Y1 and Y2 axis's by default gets values when you plot the data on to the chart. In this tip, you would learn how to remove these values. While...
View ArticleTip ; How to wrap X-axis long labels for a column chart in Jaspersoft design...
Give below advanced property for the column vizz.xAxis.labels.style.textOverflow=wrapThis property may require in combination with above ( not tested, if above doesn't work this should be given)Sample...
View ArticleNo sub report elements data displayed in report when calling the sub report...
I'd a report having 15 sub reports. Out of these 15, some were having textual design and some of them needed to connect to database and display certain data using elements such as table component or an...
View ArticleJaspersoft reports server valid login and invalid login automation tutorial...
Hi ,This is an introductory article on automating the Jaspersoft reports server user activities. In this tutorial, you would learn how to effectively implement cucumber framework with java selenium for...
View ArticleHandling internet explorer windows based authentication to a website using...
Hi,In this post, you will see tips on how to authenticate a website that is based on windows authentication. Reader is assumed to have some prior fundamental knowledge on the java-selenium-cucumber...
View ArticleDrill down from Parent report to Child report in Jaspersoft Studio reports -...
Software : ----------------1) J. Studio 7.2 pro2) Jasperreports server 7.5 EnterpriseRequirement :-----------------Drill down to customer detailed report from customer total number of cars by...
View ArticleAutomating JasperReports Server Login Page using java-selenium-cucumber |...
Hi,In this post, I'd like to share my experience on automating jaspersoft login page using valid (not invalid) credentials using cucumber frame work.The core of this post is how to generate jar file to...
View ArticleTip : Set relative path for selenium chrome web driver
In this post, you will see java snippet inputs for calling chromedriver.exe file eclipse project relative path.1) Create folder "drivers" for the project.2) Upload the chromedriver.exe file as shown...
View ArticleDrill with in the report in jasper reports
This is an extended tutorial of my post back in 2015, today, I needed to implement the same and struggled to get the old example working, so, thought of documenting it again with server export...
View ArticleExport excel test data to executable jar file(bundle excel within jar) and...
In this post, I'd like to share some fundamental coding techniques for the following questions. These techniques are useful when working on selenium based QA projects or generally in java based...
View ArticleTip : Cucumber options(classpath, tag, glue, pretty and monochrome) for...
If we wan to run the cucumber project from command line/prompt using executable jar , we should create main method and inside it have to pass string values of cucumber options.Adding main method for...
View ArticleTip : Multiple markers at this line - Step definitions detection works only...
This is usually seen in the feature file as a warning message. If you install feature file plugin from eclipse market place and if you restart the tool, the existing feature files gets this warning....
View ArticleAutoIT script for windows based chrome authentication in Selenium or Cucumber
Hi,The following AutoIt script can be used for windows based chrome authentication.1. Open the website in chrome with windows based pop-up.2. Open the AutoIT tool and move the "Finder Tool" on to the...
View ArticleTip : Code snippet of isSelected() and getAttribute("value") to validate...
Hi,Use case : In a Store page form,PASS the test : if the store belongs to an internal officeFAIL the test : if the store belongs to external office for salesNOTE : While creating the Store in the form...
View ArticleTip : finding xpath for legend tag using contains
Label content on the web:xpath: //legend[contains(.,'Add Marketing User')]HTML inspector :
View ArticleTip : Run specific cucumber scenario from command line for an executable jar...
Hi,Syntax: java -Dcucumber.options="-tags @<ScenarioName>" - jar <executable-jar-file>java -Dcucumber.options="--tags @scenario_AddUser" -jar...
View Article