ContributionsMost RecentMost LikesSolutionsReadyAPI ( Soapui) Integration with Selenium/ Cucumber Hey Guys, I was wondering if there's any good documentation that documents the integration between soapui and selenium. We are moving towards BDD using Gherkin (Cucumber ) + Selenium. I already have lots of test configured in SOAPUI and i don't want to move completely to Selenium for API test. I wanted to see if i could call soapui test, test suite, etc from selenium class. If anyone has went through the integration or is aware of any documentation, please let me know. Thanks. Re: Avoid/override scientific notation [E] in SOAP UI Response Yea, i couldn't find a way to solve this issues within the tool. I performed data conversion to get around. Anyways, thanks for suggestion. Re: Avoid/override scientific notation [E] in SOAP UI Response The raw tab response is actual data without conversion "-0.0004024006591159585". Is there's a way somehow we don't apply any conversion in other views as-well? Avoid/override scientific notation [E] in SOAP UI Response Hey guys, how to avoid scientific notation [E] in Soapui response. So when i see the response in outline , json or xml view i am seeing the value as -4.024006591159585E-4, but i want to see value as -0.0004024006591159585. Any inputs? How to create a new report sub-folder every time, when the soapui project is run from the batch file How to create a new report sub-folder every time, when the soapui project is run from the batch file using Test runner. Currently, i am using below command and every time it runs it overwrites the last report. I just wanted a way to archive the test and have a way to differentiate yesterday's test with today's Call "C:\Program Files\SmartBear\ReadyAPI-2.0.0\bin\testrunner.bat" "-sQA vs Production" "-cQA vs Production" "-fO:\ABC Projects\TestReport" "-RTestCase Report" -FPDF "-EDefault environment" "O:\ABC Projects\QA vs Production.xml" Is it possible to have one data loop for multiple data sources ( excel ) ? I have a test like this Datasource1 Rest API 1 Rest Api 2 Datasource2 Rest API 1 Rest Api 2 Datasource3 Rest API 1 Rest Api 2 Datasource4 Rest API 1 Rest Api 2 Datasource5 Rest API 1 Rest Api 2 Datasource6 Rest API 1 Rest Api 2 Datasource7 Rest API 1 Rest Api 2 Dataloop I was wondering if this is possible. When i try to run my test seems it only loops for the datasource 1 and for all other datasource it just picks the first row from datasource. So i was wondering how is this possible. Is there's a way to write log output to the txt file in Groovy Script test step? Is there's a way to write log output to the txt file in Groovy Script test step? SolvedRe: How to execute a SQL query which includes temp table ( creates and inserts ) - JDBC Step This is solved, i used def a = context.expand( '${DataSource#a}' ) def b = context.expand( '${DataSource#b}' ) sql.eachRow("""Declare @PortfolioOldCode varchar(3) = ${a}, @EndDate Date = ${b}, insted of sql.eachRow("""Declare @PortfolioOldCode varchar(3) = context.expand( '${DataSource#a}' ), @EndDate Date = context.expand( '${DataSource#b}' ) or sql.eachRow("""Declare @PortfolioOldCode varchar(3) = a, @EndDate Date = b -- Thanks for helping in guys Re: How to execute a SQL query which includes temp table ( creates and inserts ) - JDBC Step This is T-SQL. Yes i did, but not much luck. Re: How to execute a SQL query which includes temp table ( creates and inserts ) - JDBC Step My query works in the groovy script if i don't data drive it. For example; sql.eachRow ('''Declare @PortfolioOldCode varchar(3) = '113', @EndDate Date = '4/30/2017' if i send the parameter value like above the script works pretty well. However, i need to parameterize the sql input so that i can send multiple test data from the excel DataSource. I tried with getdata function but it didn't work for me. Therfore, wondering if there are other solution