ContributionsMost RecentMost LikesSolutionsRe: Did any one find solution to select date from date picker? Hi, The implementation ofclicking on particular date depends on how the date is represented in you datepicker - separate days, months and years, or may be some elements are grouped by some logic. It is difficult to say how to do it without seeing the web element and its properties. Usually direct setting of the date (using JS or element's value attribute) - the most easy, fast andreliable way. Re: Day 1 - API Testing vs. UI Testing Hello friends! I am working both with UI and API testing, but my first comment for UI team, because it is my team in context of SmartBear products :) Re: Your thoughts about a REST API in TestComplete Hi! Sounds very interesting! As for me, I would find useful, if I can get some staticstics about currently running tests. E.g. test queue, tests failed, checkpoints failed for particular tests, screenshots... And definitely I should be able to start / stop / pause / restart tests via api calls. Re: I want some java function like faker data generator for my desktop program in Testcomplete Check this >> P.S. May be you need to restart TestComplete to apply new settings. Re: I want some java function like faker data generator for my desktop program in Testcomplete Hi, Use Java Bridge >> Re: Finding object by using dynamic xpath, using Partial Content text You can test your xpath directly in your browser (e.g. using developer tools). If it works there, it will work also with TestComplete. Re: Code ExpressionTry to round required values before they were assigned to ProjectSuite variables.Re: Code Expression Try Round() function >> UPD. ups, Round returns an integer value... Try native Delphi function RoundTo() orSimpleRoundTo(). Re: Code Expression This happens because you are using INT as a type. Actually your code doing now: 3 * 355 = 1065 Try aqConvert.StrToFloat()method Re: Rest API Request is empty Hi! First of all check, how you have resolved the authorization schema. YouTrack recommends to use a Token Authorization >> That means you should use a token for each API call.