ContributionsMost RecentMost LikesSolutionsRe: Can I make class objects global to all projects in a project suite? https://marketplace.visualstudio.com/items?itemName=deitry.vscode-testcomplete Re: Can I make class objects global to all projects in a project suite? Thanks, a refactor is the path I am taking. I have found that VS code works really well with the TestComplete extension. It gives you a little more then Notepad++ can. Re: Can I make class objects global to all projects in a project suite? Thank you for help. Unfortunately when I took over the project there was no handoff and it had testers writing redundant functionality for years everywhere with no oversight. I am just trying to figure out a way forward that will keep the project clean. Thanks Again! Re: Can I make class objects global to all projects in a project suite? I understand that this is where the changes should happen but across the developers that worked on this project prior to me this is not how it was being done. My hope was that there is a way to make the classes global so there is not an imported version that can be altered allowing for buried redundant code. If this is not posable please just let me know. Thanks Re: Can I make class objects global to all projects in a project suite? Yes this is how I have it now. The issue is that across the projects that import that class changes have been implemented to the imported versions and those changes are not updating original. So as I look through this project I see redundant functionally implemented various different ways across all the projects in the imported versions of the class. So would it be posable to have the classes global so they do not have to have to have imported versions to start with? Can I make class objects global to all projects in a project suite? I am taking over a Project Suite and implementing Page object model. Currently the object class are within a single project and other projects that use those class objects import them from the original project. The issue is that the imported file can be changed and the original will remain the same. I want to be able to have the class objects global to all the projects without having to import them. Can this be done? Re: I am unable to use the Browser wild card for default browser when chrome is my default browser If I use your example it will print iexplore, but chrome is my default browser. I am unable to use the Browser wild card for default browser when chrome is my default browser I have recently taken over a test complete project and was told that we have never been able to test in chrome because unless we explicitly call Sys.Browser('chrome') it will not work. I would like to be able to use Sys.Browser('*') but this will not work when chrome is set to be my system default browser. Can you please shed some light on what my issue may be. This is how I am trying to get the default browser but this is not working either function getDefaultBrowser(){ Browsers.Refresh(); var defaultBrowserObj = Browsers.Item(Browsers.SystemDefaultBrowser); var defaultBrowserCode = defaultBrowserObj.Family; switch(defaultBrowserCode){ case -1: browserName = "iexplore"; break; case -2: browserName = "firefox"; break; case -3: browserName = "chrome"; break; case -6: browserName = "edge"; break; default: browserName = null; Log.Message(defaultBrowserCode + " is not a valid browser code"); } return browserName; }``` Re: I am unable to use the Browser wild card for default browser when chrome is my default browser the -3 comes from this https://support.smartbear.com/testcomplete/docs/reference/test-objects/controls/web/general/browsers/item.html