ContributionsMost RecentMost LikesSolutionsRe: Unable to click into Date Time Picker Better to change wDate value, or even to execute JavaScript to set datepicker value, instead of clicks. https://support.smartbear.com/testcomplete/docs/app-objects/specific-tasks/ios/date-picker/setting-date.html Re: try to set http header using request filter implementation in proxy nd launch browser with https url How did you setup proxy? Can you show implementation of BrowserMobProxyServer class? Re: Using TestComplete with Google Chrome Hi, Does it help: https://support.smartbear.com/testcomplete/docs/app-testing/web/general/preparing-browsers/chrome.html ? Re: Click on keyboard button https://support.smartbear.com/testcomplete/docs/reference/test-objects/controls/mobile/android/device/android-key-constants.html Does it help? Re: Regarding testcomplete subscription As far as I know after subscription expired your version of TC will work without any support and ability to do any upgrades. Re: Getting values from the excel file using Python Many thanks @baxatob, it works! Getting values from the excel file using Python Hi, I have an excel file with parameters under two columns. Some cells contains no parameter (empty cells). If value under Column1 is empty, I need the value under Column2. I use: testParams = [] while myFile.IsEOF() != True: if myFile.Value["Column1"] != "": value = myFile.Value["Column1"] else: value = myFile.Value["Column2"] testParams.append(value) myFile.Next() But anyway I receive only the values under Column1: ["P1", "P2", None, None, None] I expect T3, T4, T5 etc instead off None. SolvedRe: TestComplete Repo Question If you don't need to store .png files in repository, you can add them to .hgignore file - https://www.selenic.com/mercurial/hgignore.5.html