ContributionsMost RecentMost LikesSolutionsRe: Test item parameters manipulationAll clear there is solution: In edit Mode select "Code Expression" in Value type "*" + KeywordTests.MyTestItem.Parameters.MyParameterName + "*"Test item parameters manipulationHi I have the keyword test item. It accept two parameters ItemName and SubItemName. Inside the test i call some other test items and at the end check the system status by calling my system routine to finding "sub item" by SubItemName. The problem is that i had to use wildcards to find the "sub item" (if SubItemName = "aaa" than i should search for "*aaa*"). Please advise me how can i modify SubItemName (or create modified value) test item parameter when calling other test item. Re: How to simulate custom user-agent query to web application?Final version of script: function HttpGet(url, userAgent) { var httpObj = Sys.OleObject("MSXML2.XMLHTTP"); httpObj.open("GET", url, true); httpObj.setRequestHeader("User-Agent", userAgent); // set user agent httpObj.setRequestHeader("If-Modified-Since", "Sat, 1 Jan 2000 00:00:00 GMT"); /// do not cache the response httpObj.send(); while((httpObj.readyState != 4) && (httpObj.readyState != 'complete')) { Delay(300); } switch(httpObj.status) { case 200: case 302: if (httpObj.responseText.lenght == 0) //!= expectedObjectData) { Log.Message("The " + link + " link is valid", httpObj.responseText); return false; } return httpObj.responseText; break; default: Log.Message("The " + link + " link was not found, the returned status: " + httpObj.status, httpObj.responseText); return false; } } Re: How to simulate custom user-agent query to web application?Thank's a lot.How to simulate custom user-agent query to web application?Hi. I have web application that generate different response depend on mobile browser user-agent. How can i test such behaviour? I do not need any interraction. I need only make GET request and analyze the response (make some String.indexOf() tests). With best regards. IgorHow to stop test execution on checkpoint fail?I have some keyword tests with some property checkpoints inside. If checkpoint fail i've got a message in log, but test still running. Is there an option to stop execution on checkpoint fail? Re: Style attribute on table tag prevent TC from finding controls inside the tableI will try to reproduce. Style attribute on table tag prevent TC from finding controls inside the tableHi i am novice. Please give me advise where to post such issues. I have made script test of web form. Simple form plus link surrounded by 1 cell table. TC (7.50.653.7) can't find the link if table have attribute style: <table style="width:600px" class="formTable" > <tr><td> Link title <asp:LinkButton ID="btnDoLogin" runat="server" OnClick="btnDoLogin_OnClick">Enter system.</asp:LinkButton> </td></tr> </table> when i remove style attribute everyting works fine. Is there workaround of this issus or was it fixed in latest versions?