Adina11
14 years agoNew Contributor
Can I take ServerSocket value from a property?
Hi,
I have next def in Groovy: def server = new ServerSocket(8400)
And a property defined at Test Suite level named, web_services_url , that store 8400 value
My question is if I can define my server to take the SeverSocket value from web_services_url propery
I tried with def server = new ServerSocket('${#TestSuite#web_services_url}') – but is not working
Thanks,