ContributionsMost RecentMost LikesSolutionsRe: TestComplete-Resolution Issue That is interesting!! Is there any setting I am missing ? Re: TestComplete-Resolution Issue Here is the sample project file,this is recorded in laptop and passed on playback.But failing when connecting to a monitor Re: TestComplete-Resolution Issue Thank you for the reply. the resolution is actually same, except that it is monitor screen vs laptop screen. I am not using XY coordinate, it is based on the object on Namemapping.Is there a global setup/configuration to turn off XY coordinate while recording script? The available properties of the namemapping object doesnt use any of those, how do I know for sure it is not using that behind the scene. TestComplete-Resolution Issue I am a beginner in automation world.Recently started using Testcomplete and I scripted (keyword) the web application using my laptop (resolution 1920,1080) and in laptop it is running successfully, but when I Switch to monitor the scrip breaks . Tried running the below script at the starting of the execution,still issue is not fixed .Any help will be much appreciated !!! function Test() { Sys.Browser("chrome").BrowserWindow(0).Restore(); Sys.Browser("chrome").BrowserWindow(0).Position(0, 0, 1920, 1080); } Thanks