Dashboards for testers
We are carrying out user testing with a large team of users. We'd like to create a Dashboard so the user logged on can see the number of tests completed, failed, untested etc. Is there a way of adding Current User to the Zephyr Widgets so a common dashboard can be shared?724Views0likes3Commentshow to stop exporting failed test cases result to a file in - FAIL.txt in afterStep
I have lots of pre steps in my test suite which might fail sometime but that is expected. But the problem here is this is generating aFAIL.txt file in Jenkins machine . is there any way to stop creating this file ? Thanks in Advance.771Views0likes3CommentsReprt of readyAPi
Requirement of report - 1) request 2)response 3)why teststep pass 4)Why teststep fail 5)method 6)End point 7)Assertions 8)Testcase name 9)test suite name please find attached for approach and follow that . We need report in Pdf format. How to write teardownscript and setupscript in readyAPI ?Solved4.7KViews0likes6CommentsProblem exporting SoapUI reports using Groovy
xxx // https://support.smartbear.com/readyapi/apidocs/pro/com/eviware/soapui/reporting/reports/testsuite/WsdlTestSuiteReport.html def report = new WsdlTestSuiteReport(testSuite) // https://support.smartbear.com/readyapi/apidocs/pro/com/eviware/soapui/reporting/ReportEngineRegistry.html def availableReports = ReportEngineRegistry .getAvailableReports(report) def reportSettings = report .getModelItemReportParameters() // https://support.smartbear.com/readyapi/apidocs/soapui/com/eviware/soapui/model/TestPropertyHolder.html .getModelItem() // https://www.soapui.org/apidocs/com/eviware/soapui/model/ModelItem.html .getSettings() // https://www.soapui.org/apidocs/com/eviware/soapui/model/settings/Settings.html // get list of all reports for test case for (availableReport in availableReports) { String reportName = availableReport.getName() log.info("$reportName is available") if (reportName == "JUnit-Style HTML Report") { // https://support.smartbear.com/readyapi/apidocs/pro/com/eviware/soapui/reporting/engine/junit/GeneratableJUnitReport.html def jrFormats = (String[])[ "HTML" ] // https://support.smartbear.com/readyapi/apidocs/pro/com/eviware/soapui/reporting/GeneratableReport.html#generate-com.eviware.soapui.model.settings.Settings-java.lang.String:A-java.lang.String- def results = availableReport.generate( reportSettings, jrFormats, dataExportFolder) availableReport.release() String path = results[0] log.info("JUnit created $path") return path } else if (availableReport.getName() == "Data Export") { def jrFormats = (String[])[ "CSV" ] // https://support.smartbear.com/readyapi/apidocs/pro/com/eviware/soapui/reporting/GeneratableReport.html#generate-com.eviware.soapui.model.settings.Settings-java.lang.String:A-java.lang.String- def results = availableReport.generate( reportSettings, jrFormats, dataExportFolder) availableReport.release() String metricsPath = results[0] log.info("Data export report has been created at '$metricsPath'") return metricsPath } } In both JUnit andData Export reprts multiple statistic fields containing wrong zero values. Exporting reports using SOAPUI GUI works properly. Whats wrong with it?Is it settings issue? How can I export SOAP UI report correctly using Groovy?Solved1.6KViews0likes2CommentsHow to generate test case printable report during automation execution and Save in local system ?
Using TestRunner GUI, There are reports that can be generated such as Junit Report, Allure Report and Printable report. How to save these reports after execution of each testcase ?Solved3.3KViews0likes7CommentsSummary Report with aqTestCase and TestComplete 12
Has anyone tried to create a Summary Report via aqTestCase.Begin() / .End() in TestComplete 12? I saw, there is a option to choose TestComplete 12 in the documentation , but then it says "Topic not found". Thank you for your help.Solved1.7KViews0likes3CommentsImpossible to distinguish two report section
Hy everyone, I have a problem with the correct detect of my report section, in particular, I must test that a single method has a single page and that an andvanced report has 2 or more pages, but when I use Object Spy to detect the report I noted that Test Complete seen my report as a unique block also if is composed by 2 or 3 pages. Not is possibile select nothing of the elements of the report (text, page etc). In attached there is a screenshoot of the report e then of the selection (in red) detected by Object Spy. Moreover I attach also the properties related to the 2 different reports. How can I resolve?Solved1.6KViews0likes2CommentsHTML report without maven or ant in groovy
Hi All, Have nearly 100 Methods and 250 operations in my project using one parameter file to pass the inputs to the methods Below code which using in Groovy method and it is executing all the methods for(project in com.eviware.soapui.SoapUI.workspace.projectList){ if(project.open && project.name != testRunner.testCase.testSuite.project.name){ project.run(null,false) } } Now want to save and see the report how many methods are passed and how many Failed is there any method to store the reports? Thanks in advance2.7KViews0likes12CommentsIs there a way to add script logs in reports ?
Hi, I would find very interesting to have my script logs in a report, how can I do that ? Otherwise, is there a way to have Test Results message more significant? It would be nice to know the data the test is running instead of Row 1, Row 2, Row 3, ....573Views0likes0Comments[SoapUI 5.2.1 bug report] Reproducible project corruption on SoapUI exit
Environment:SoapUI 5.2.1 with Java SE 1.8.0_45-b14 on Windows 7 Pro x64. Actual result: I have a project containing two services with both mock up and requests. On SoapUI exit (no matter how it was initiated: menu, shortcut, red X) corrupts the project when clilcking on "Yes", it remains OK when clicking "No". Even after clicking "Yes" it stays open! The corruption is that the contents of request A gets overwritten with the contents of request B. Workaround: Save manually and close SoapUI with "Exit without saving". Expected result: SoapUI closes on "Exit" and does not corrupt the project.853Views0likes0Comments