ContributionsMost RecentMost LikesSolutionsRe: Test Execute fail to run and execute the code via GitActions Hi rraghvani, Thanks. We don't need and even don't want to log in remotely and see the test being executed, we want the test to run in the background on a Git vm and we only want to get the results at the end of the run. we did the same using Jenkins for years and it ran as expected, we now migrating to Github Actions and want to do the same and it doesn't work as there's no interactive session support there for some reason. we want to be able to execute the tests behind scene via a command line.this is the command line we';re using but for some reason, it is failing: "C:\Program Files (x86)\SmartBear\TestExecute 15\Bin\TestExecute.exe" %ProjectPath% /r /e /AccessKey:%AccessKey% /Timeout:12000 /ns /ErrorLog:%cd%\logs\error.log /ExportLog:%cd%\logs\runlog.html /ExportSummary:%cd%\logs\runlog.xml /shr:%cd%\logs\shared-repo-link.txt /shrn:LogFromGitHubAction /shrei:7 Test Execute fail to run and execute the code via GitActions Hi, We have been testing running TestExecute under GitHub actions but have hit an issue. For the tests to work, TC needs to run in an interactive user session so that it can click on buttons etc. and it looks like this is not available under a Git-Hub hosted runner. Do you know how to run it in a Git-hub hosted runner? under Jenklins we used the SessionCreator, can that be used in Github runners?Thanks, Ofer Re: Getting an error in GitActions Warning: No file matches path logs/runlog.xml Right, this post is not relevant anymore but, couldn't find where to delete it so left it there. please ignore it Getting an error in GitActions Warning: No file matches path logs/runlog.xml Hi, I'm running a build via GitActions and it all works fine except for one bit, it seems unable to find the logs/runlog.xml file for some reason. Can anyone please help? Thanks Re: Run TestComplete with GitHub Actions Hi cmpenn, We are trying to do the same atm, did you have any success? and if you did can you please help with how to do that? Thanks Ofer Re: Multiple Issues with TestComplete 15.51.4.7 I also upgraded yesterday and the tests are failing with the following error: Possible reasons: 1. The application stopped responding. 2. The application was compiled incorrectly (see the Open Applications topic in the help system). 3. An error occurred in TestComplete/TestExecute. Technical information: 515 0x80020003 (Member not found.) . I wouldn't want to go for the workaround path as something very fundamental is broken and there are hundreds of lines to change for me in order for it to work. If anyone in SmartBear can please update ASAP the status of this as nothing is working since the last update. Thanks, Ofer Re: ClickItem for a WPF comboBox won't select an item by its caption, only by index OK, I have managed to resolve this prob: NoOfLang = Aliases.DesignerProcess.DesignerMainWindow.BackstageViewMenu.BackStageWindowPanels.OptionsTabBackStageWindow.LanguageOptionComboBox.Items.SourceCollection.Count for i in range(NoOfLang): LangNativeName =Aliases.DesignerProcess.DesignerMainWindow.BackstageViewMenu.BackStageWindowPanels.OptionsTabBackStageWindow.LanguageOptionComboBox.Items.SourceCollection.Item[i].Value.NativeName.OleValue if LangNativeName == param1: comboBox.ClickItem(i) break Hope it will help someone else who has a similar problem. Thanks for all the help Ofer Re: ClickItem for a WPF comboBox won't select an item by its caption, only by index When clicking the drop down in order to open it using click() method, it won't open. it will open and close very quickly. not sure why Re: ClickItem for a WPF comboBox won't select an item by its caption, only by index Yeah I saw that as well. Can you please give an example of how i can use ClickText to find the correct text? where can i find this method? there's no ClickText method in that comboBox Re: ClickItem for a WPF comboBox won't select an item by its caption, only by index Yes, that's what I'm doing but couldn't find anything that will help me select the item 😕 If I drill down for example to the DataContext and then use the methods available, would it work on the object selection? or I can only use the methods available on the comboBox itself?