ContributionsMost RecentMost LikesSolutionsHow to get blank when JDBC step return xml empty element like <key/> GetKey-JDBCRequest read data from DB, normally we get results like <Results> <ResultSet fetchSize="128"> <Row rowNumber="1"> <Key>123</Key> </Row> </ResultSet> </Results> <Key>123</Key> means value:123, then we use '${GetKey-JDBCRequest#ResponseAsXml#//Results[1]/ResultSet[1]/Row[1]/Key[1]}' for next step But when it returns empty result, it becomes <Key/> instead of <Key></Key> so that value of '${GetKey-JDBCRequest#ResponseAsXml#//Results[1]/ResultSet[1]/Row[1]/Key[1]}' is NOT "" but "</Key>" That's not the result we want. How to get correct blank/empty result and avoid the wrong one? I don't want to use Groovy to parse the value, is there any simple way to deal with it? Like change a setting and force to output xml format as <Key></Key>, or a simple function to read out "" instead of "</Key>" Thanks a lot Does ReadyAPI support multiple windows feature? I'm using ReadyAPI for our company's QA testing projects. We have lots of projects to load, unfortunately I can't load projects with multiple windows: I means, I want to open ReadyAPI window 1 to load Project A , B , C, D ,E, then another window 2 to load Project F G H I J K, then another window 3 for Project L M N O P But now it always load previous projects, that means I must open A to P at the same time and no choice to load part of them. It's very slow to load all of them at the same time. Actually Sometimes I need A to E, sometimes I need L to P, it's not convenience to remove them one by one and add them one by one each time. Does ReadyAPI support multiple windows feature for that? Or will you support this feature soon? Thanks a lot.