def Set_Browser_Size(page, iHeight, iWidth):\n wnd = BrowserWindowByPageGet(page)\n \n iBorderWidth = wnd.Width - page.Width\n iBorderHeight = wnd.Height - page.Height\n\n iWinWidth = iWidth + iBorderWidth\n iWinHeight = iHeight + iBorderHeight\n\n Log.Message(aqString.Format(\"Set browser\\'s viewport size to %ix%i (window size is %ix%i)\", iWidth, iHeight, iWinWidth, iWinHeight),\n aqString.Format(\"%ix%i\\n%ix%i\", iWidth, iHeight, iWinWidth, iWinHeight));\n\n res = (iWinWidth > Sys.Desktop.Width) | (iWinHeight > Sys.Desktop.Height)\n if (res):\n Log.Warning(aqString.Format(\"Viewport size was not changed as it exceeds current size of the desktop (%ix%i)\",\n Sys.Desktop.Width, Sys.Desktop.Height))\n else:\n if ((wnd.Width != iWinWidth) | (wnd.Height != iWinHeight)):\n wnd.Position(0, 0, iWinWidth, iWinHeight)\n return res\n \ndef BrowserWindowByPageGet(Page):\n if (Page.Exists):\n if (\"Page\" == Page.ObjectType):\n if ('edge' == Page.Parent.ObjectIdentifier):\n wnd = Page.Parent.BrowserWindow(0)\n else:\n title = Page.contentDocument.title\n wnd = Page.Parent.FindChild(\"WndCaption\", title + \"*\")\n return wnd","body@stripHtml({\"removeProcessingText\":false,\"removeSpoilerMarkup\":false,\"removeTocMarkup\":false,\"truncateLength\":200})@stringLength":"203","kudosSumWeight":1,"postTime":"2018-02-16T01:39:08.812-08:00","lastPublishTime":"2018-02-16T01:39:08.812-08:00","metrics":{"__typename":"MessageMetrics","views":2018},"visibilityScope":"PUBLIC","placeholder":false,"showMoveIndicator":false,"originalMessageForPlaceholder":null,"isEscalated":null,"solution":false,"replies":{"__typename":"MessageConnection","pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null},"edges":[{"__typename":"MessageEdge","cursor":"MjUuNHwyLjF8b3wzfDE0OjAsMzk6MXwx","node":{"__ref":"ForumReplyMessage:message:164900"}}]},"customFields":[],"attachments":{"__typename":"AttachmentConnection","edges":[],"pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null}}},"ModerationData:moderation_data:164900":{"__typename":"ModerationData","id":"moderation_data:164900","status":"APPROVED","rejectReason":null,"isReportedAbuse":false,"rejectUser":null,"rejectTime":null,"rejectActorType":null},"ForumReplyMessage:message:164900":{"__typename":"ForumReplyMessage","uid":164900,"id":"message:164900","entityType":"FORUM_REPLY","eventPath":"category:TestComplete_forum/community:nwkab66374board:testcomplete-questions/message:158858/message:164900","revisionNum":1,"author":{"__ref":"User:user:71334"},"readOnly":false,"repliesCount":3,"depth":2,"hasGivenKudo":false,"subscribed":false,"board":{"__ref":"Forum:board:testcomplete-questions"},"parent":{"__ref":"ForumReplyMessage:message:158911"},"conversation":{"__ref":"Conversation:conversation:158858"},"subject":"Re: Resizing Window","moderationData":{"__ref":"ModerationData:moderation_data:164900"},"body":"
Hi Lagencie
This is what I use and wonderfully for me (javascript) -
Sys.Browser(\"*\").BrowserWindow(0).Position(0, 0, 1400, 1080);
Hope this works for you as well.
","body@stripHtml({\"removeProcessingText\":false,\"removeSpoilerMarkup\":false,\"removeTocMarkup\":false,\"truncateLength\":200})@stringLength":"208","kudosSumWeight":1,"postTime":"2018-05-21T08:40:05.869-07:00","lastPublishTime":"2018-05-21T08:40:05.869-07:00","metrics":{"__typename":"MessageMetrics","views":1960},"visibilityScope":"PUBLIC","placeholder":false,"showMoveIndicator":false,"originalMessageForPlaceholder":null,"isEscalated":null,"solution":false,"replies":{"__typename":"MessageConnection","pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null},"edges":[{"__typename":"MessageEdge","cursor":"MjUuNHwyLjF8b3wxfDE0OjAsMzk6MXwx","node":{"__ref":"ForumReplyMessage:message:171258"}}]},"customFields":[],"attachments":{"__typename":"AttachmentConnection","edges":[],"pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null}}},"ModerationData:moderation_data:171258":{"__typename":"ModerationData","id":"moderation_data:171258","status":"APPROVED","rejectReason":null,"isReportedAbuse":false,"rejectUser":null,"rejectTime":null,"rejectActorType":null},"ForumReplyMessage:message:171258":{"__typename":"ForumReplyMessage","author":{"__ref":"User:user:73982"},"id":"message:171258","entityType":"FORUM_REPLY","eventPath":"category:TestComplete_forum/community:nwkab66374board:testcomplete-questions/message:158858/message:171258","revisionNum":1,"uid":171258,"depth":3,"hasGivenKudo":false,"subscribed":false,"board":{"__ref":"Forum:board:testcomplete-questions"},"parent":{"__ref":"ForumReplyMessage:message:164900"},"conversation":{"__ref":"Conversation:conversation:158858"},"subject":"Re: Resizing Window","moderationData":{"__ref":"ModerationData:moderation_data:171258"},"body":"
This can not work royd because this solutions sets the Browser size, so the content is set to whatever is left.
\n\n
You need to check the different borders, as in chrome it is around 30px, in firefox around 25px, in edge only 10px so if you use .Position it only makes the outer lines of the browser to 1400 width - but I needed the content to be at least 1400px.
\n\n
\n
My problem right now is with Edge AlexKaras did you test Edge already with your provided code? For me the wnd.width - page.width says = 0 because the variables seem to be the same on MicrosoftEdge ... Not sure what I should do here, I made it now If Browser Edge => add 9,8px as this is the standard Edge Border size, which is fairly cheap and cheated, but works ... Do you have a better solution for this problem probably?
","body@stripHtml({\"removeProcessingText\":false,\"removeSpoilerMarkup\":false,\"removeTocMarkup\":false,\"truncateLength\":200})@stringLength":"218","kudosSumWeight":0,"repliesCount":2,"postTime":"2018-09-14T04:30:19.386-07:00","lastPublishTime":"2018-09-14T04:30:19.386-07:00","metrics":{"__typename":"MessageMetrics","views":1829},"visibilityScope":"PUBLIC","placeholder":false,"showMoveIndicator":false,"originalMessageForPlaceholder":null,"isEscalated":null,"solution":false,"customFields":[],"attachments":{"__typename":"AttachmentConnection","edges":[],"pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null}}},"User:user:77035":{"__typename":"User","id":"user:77035","uid":77035,"login":"socaltester","biography":null,"registrationData":{"__typename":"RegistrationData","status":null,"registrationTime":"2017-11-17T08:40:23.004-08:00"},"deleted":false,"email":"","avatar":{"__typename":"UserAvatar","url":"https://community.smartbear.com/t5/s/nwkab66374/m_assets/avatars/default/avatar-12.svg?time=0"},"rank":{"__ref":"Rank:rank:13"},"entityType":"USER","eventPath":"community:nwkab66374/user:77035"},"ModerationData:moderation_data:158880":{"__typename":"ModerationData","id":"moderation_data:158880","status":"APPROVED","rejectReason":null,"isReportedAbuse":false,"rejectUser":null,"rejectTime":null,"rejectActorType":null},"ForumReplyMessage:message:158880":{"__typename":"ForumReplyMessage","author":{"__ref":"User:user:77035"},"id":"message:158880","entityType":"FORUM_REPLY","eventPath":"category:TestComplete_forum/community:nwkab66374board:testcomplete-questions/message:158858/message:158880","revisionNum":1,"uid":158880,"depth":1,"hasGivenKudo":false,"subscribed":false,"board":{"__ref":"Forum:board:testcomplete-questions"},"parent":{"__ref":"ForumTopicMessage:message:158858"},"conversation":{"__ref":"Conversation:conversation:158858"},"subject":"Re: Resizing Window","moderationData":{"__ref":"ModerationData:moderation_data:158880"},"body":"I interested in this as well.
","body@stripHtml({\"removeProcessingText\":false,\"removeSpoilerMarkup\":false,\"removeTocMarkup\":false,\"truncateLength\":200})@stringLength":"31","kudosSumWeight":0,"repliesCount":0,"postTime":"2018-02-15T12:29:09.433-08:00","lastPublishTime":"2018-02-15T12:29:09.433-08:00","metrics":{"__typename":"MessageMetrics","views":4705},"visibilityScope":"PUBLIC","placeholder":false,"showMoveIndicator":false,"originalMessageForPlaceholder":null,"isEscalated":null,"solution":false,"replies":{"__typename":"MessageConnection","pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null},"edges":[]},"customFields":[],"attachments":{"__typename":"AttachmentConnection","edges":[],"pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null}}},"Rank:rank:6":{"__typename":"Rank","id":"rank:6","position":12,"name":"Esteemed Contributor","color":"00537C","icon":null,"rankStyle":"OUTLINE"},"User:user:45447":{"__typename":"User","id":"user:45447","uid":45447,"login":"tristaanogre","biography":null,"registrationData":{"__typename":"RegistrationData","status":null,"registrationTime":"2009-11-30T22:07:57.000-08:00"},"deleted":false,"email":"","avatar":{"__typename":"UserAvatar","url":"https://community.smartbear.com/t5/s/nwkab66374/images/dS00NTQ0Ny0zMzU5aTMyNEQ2NzhFNzA1Mjc2RUI"},"rank":{"__ref":"Rank:rank:6"},"entityType":"USER","eventPath":"community:nwkab66374/user:45447"},"ModerationData:moderation_data:158881":{"__typename":"ModerationData","id":"moderation_data:158881","status":"APPROVED","rejectReason":null,"isReportedAbuse":false,"rejectUser":null,"rejectTime":null,"rejectActorType":null},"ForumReplyMessage:message:158881":{"__typename":"ForumReplyMessage","uid":158881,"id":"message:158881","entityType":"FORUM_REPLY","eventPath":"category:TestComplete_forum/community:nwkab66374board:testcomplete-questions/message:158858/message:158881","revisionNum":1,"author":{"__ref":"User:user:45447"},"readOnly":false,"repliesCount":5,"depth":1,"hasGivenKudo":false,"subscribed":false,"board":{"__ref":"Forum:board:testcomplete-questions"},"parent":{"__ref":"ForumTopicMessage:message:158858"},"conversation":{"__ref":"Conversation:conversation:158858"},"subject":"Re: Resizing Window","moderationData":{"__ref":"ModerationData:moderation_data:158881"},"body":"Question: Are you trying to set it to a particular size? Or are you trying to maximize it? Trying to determine the purpose for altering the browser window size because there may be other options than setting to a particular size.
","body@stripHtml({\"removeProcessingText\":false,\"removeSpoilerMarkup\":false,\"removeTocMarkup\":false,\"truncateLength\":200})@stringLength":"208","kudosSumWeight":0,"postTime":"2018-02-15T13:14:01.043-08:00","lastPublishTime":"2018-02-15T13:14:01.043-08:00","metrics":{"__typename":"MessageMetrics","views":4692},"visibilityScope":"PUBLIC","placeholder":false,"showMoveIndicator":false,"originalMessageForPlaceholder":null,"isEscalated":null,"solution":false,"replies":{"__typename":"MessageConnection","pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null},"edges":[{"__typename":"MessageEdge","cursor":"MjUuNHwyLjF8b3wzfDE0OjAsMzk6MXwx","node":{"__ref":"ForumReplyMessage:message:158891"}}]},"customFields":[],"attachments":{"__typename":"AttachmentConnection","edges":[],"pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null}}},"ModerationData:moderation_data:158891":{"__typename":"ModerationData","id":"moderation_data:158891","status":"APPROVED","rejectReason":null,"isReportedAbuse":false,"rejectUser":null,"rejectTime":null,"rejectActorType":null},"AssociatedImage:{\"url\":\"https://community.smartbear.com/t5/s/nwkab66374/images/cmstMzEtZ3JyeWo3\"}":{"__typename":"AssociatedImage","url":"https://community.smartbear.com/t5/s/nwkab66374/images/cmstMzEtZ3JyeWo3","height":20,"width":20,"mimeType":"image/png"},"Rank:rank:31":{"__typename":"Rank","id":"rank:31","position":6,"name":"Champion Level 1","color":"00537C","icon":{"__ref":"AssociatedImage:{\"url\":\"https://community.smartbear.com/t5/s/nwkab66374/images/cmstMzEtZ3JyeWo3\"}"},"rankStyle":"OUTLINE"},"User:user:21756":{"__typename":"User","id":"user:21756","uid":21756,"login":"AlexKaras","biography":null,"registrationData":{"__typename":"RegistrationData","status":null,"registrationTime":"2013-07-19T01:15:21.000-07:00"},"deleted":false,"email":"","avatar":{"__typename":"UserAvatar","url":"https://community.smartbear.com/t5/s/nwkab66374/images/dS0yMTc1Ni00aTg4NzJBNDUwNjM4MzlDQkE"},"rank":{"__ref":"Rank:rank:31"},"entityType":"USER","eventPath":"community:nwkab66374/user:21756"},"ForumReplyMessage:message:158891":{"__typename":"ForumReplyMessage","uid":158891,"id":"message:158891","entityType":"FORUM_REPLY","eventPath":"category:TestComplete_forum/community:nwkab66374board:testcomplete-questions/message:158858/message:158891","revisionNum":1,"author":{"__ref":"User:user:73982"},"readOnly":false,"repliesCount":4,"depth":2,"hasGivenKudo":false,"subscribed":false,"board":{"__ref":"Forum:board:testcomplete-questions"},"parent":{"__ref":"ForumReplyMessage:message:158881"},"conversation":{"__ref":"Conversation:conversation:158858"},"subject":"Re: Resizing Window","moderationData":{"__ref":"ModerationData:moderation_data:158891"},"body":"We are testing a web application with ~20 breakpoints at different px width sizes.
therefore I need to set it to specific sizes 15 exactly.
The height I just took fixed on 1000 but the width changes depending on the test.
So maximizing is no option, I even need to restore it before as it sometimes opens the browser maximized, which doesnt allow .Position
","body@stripHtml({\"removeProcessingText\":false,\"removeSpoilerMarkup\":false,\"removeTocMarkup\":false,\"truncateLength\":200})@stringLength":"213","kudosSumWeight":0,"postTime":"2018-02-15T21:54:10.895-08:00","lastPublishTime":"2018-02-15T21:54:10.895-08:00","metrics":{"__typename":"MessageMetrics","views":4682},"visibilityScope":"PUBLIC","placeholder":false,"showMoveIndicator":false,"originalMessageForPlaceholder":null,"isEscalated":null,"solution":false,"replies":{"__typename":"MessageConnection","pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null},"edges":[{"__typename":"MessageEdge","cursor":"MjUuNHwyLjF8b3wxfDE0OjAsMzk6MXwx","node":{"__ref":"AcceptedSolutionMessage:message:158905"}}]},"customFields":[],"attachments":{"__typename":"AttachmentConnection","edges":[],"pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null}}},"ModerationData:moderation_data:158905":{"__typename":"ModerationData","id":"moderation_data:158905","status":"APPROVED","rejectReason":null,"isReportedAbuse":false,"rejectUser":null,"rejectTime":null,"rejectActorType":null},"AcceptedSolutionMessage:message:158905":{"__typename":"AcceptedSolutionMessage","author":{"__ref":"User:user:21756"},"id":"message:158905","entityType":"FORUM_REPLY","eventPath":"category:TestComplete_forum/community:nwkab66374board:testcomplete-questions/message:158858/message:158905","revisionNum":1,"uid":158905,"depth":3,"hasGivenKudo":false,"subscribed":false,"board":{"__ref":"Forum:board:testcomplete-questions"},"parent":{"__ref":"ForumReplyMessage:message:158891"},"conversation":{"__ref":"Conversation:conversation:158858"},"subject":"Re: Resizing Window","moderationData":{"__ref":"ModerationData:moderation_data:158905"},"body":"Hi,
\n\n
So far I ended-up with this code. Hopefully it will work for you as well...
\n//----------------------------------------------------------------------------\n\n// Sets the size of browser's viewport\nfunction BrowserViewportSizeSet(page, iWidth, iHeight)\n{\n var wnd;\n var iBorderWidth, iBorderHeight;\n var iWinWidth, iWinHeight;\n var res;\n\n wnd = BrowserWindowByPageGet(page);\n\n iBorderWidth = wnd.Width - page.Width;\n iBorderHeight = wnd.Height - page.Height;\n\n iWinWidth = iWidth + iBorderWidth;\n iWinHeight = iHeight + iBorderHeight;\n\n Log.Message(aqString.Format(\"Set browser\\'s viewport size to %ix%i (window size is %ix%i)\", iWidth, iHeight, iWinWidth, iWinHeight),\n aqString.Format(\"%ix%i\\n%ix%i\", iWidth, iHeight, iWinWidth, iWinHeight));\n\n res = (iWinWidth > Sys.Desktop.Width) || (iWinHeight > Sys.Desktop.Height);\n if (res)\n Log.Warning(aqString.Format(\"Viewport size was not changed as it exceeds current size of the desktop (%ix%i)\",\n Sys.Desktop.Width, Sys.Desktop.Height));\n else\n {\n if ((wnd.Width != iWinWidth) || (wnd.Height != iWinHeight))\n wnd.Position(0, 0, iWinWidth, iWinHeight);\n }\n\n return res;\n}\n//----------------------------------------------------------------------------\n\n// Returns BrowserWindow object that corresponds to the given page object\n// From: http://smartbear.com/forums/f75/t83264/how-to-match-a-page-object-to-its-browserwindow\nfunction BrowserWindowByPageGet(Page)\n{\n var title;\n var wnd;\n\n// wnd = Utils.CreateStubObject(); // Utils is not accessible from Script Extension\n wnd = null;\n if (Page.Exists)\n if (\"Page\" == Page.ObjectType)\n {\n if ('edge' == Page.Parent.ObjectIdentifier)\n wnd = Page.Parent.BrowserWindow(0); // quick crutch\n else\n {\n title = Page.contentDocument.title;\n wnd = Page.Parent.FindChild(\"WndCaption\", title + \"*\");\n }\n }\n\n return wnd;\n}\n//----------------------------------------------------------------------------\n","body@stripHtml({\"removeProcessingText\":false,\"removeSpoilerMarkup\":false,\"removeTocMarkup\":false,\"truncateLength\":200})@stringLength":"208","kudosSumWeight":1,"repliesCount":3,"postTime":"2018-02-16T00:08:43.747-08:00","lastPublishTime":"2018-02-16T00:08:43.747-08:00","solution":true,"metrics":{"__typename":"MessageMetrics","views":4624},"visibilityScope":"PUBLIC","placeholder":false,"showMoveIndicator":false,"originalMessageForPlaceholder":null,"isEscalated":null,"customFields":[],"attachments":{"__typename":"AttachmentConnection","edges":[],"pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null}},"body@stripHtml({\"removeProcessingText\":true,\"removeSpoilerMarkup\":true,\"removeTocMarkup\":true,\"truncateLength\":200})@stringLength":"208","images":{"__typename":"AssociatedImageConnection","edges":[],"totalCount":0,"pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null}},"videos":{"__typename":"VideoConnection","edges":[],"totalCount":0,"pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null}}},"User:user:76784":{"__typename":"User","id":"user:76784","uid":76784,"login":"kaiiii","biography":null,"registrationData":{"__typename":"RegistrationData","status":null,"registrationTime":"2017-10-31T03:32:03.892-07:00"},"deleted":false,"email":"","avatar":{"__typename":"UserAvatar","url":"https://community.smartbear.com/t5/s/nwkab66374/m_assets/avatars/default/avatar-9.svg?time=0"},"rank":{"__ref":"Rank:rank:11"},"entityType":"USER","eventPath":"community:nwkab66374/user:76784"},"ModerationData:moderation_data:158894":{"__typename":"ModerationData","id":"moderation_data:158894","status":"APPROVED","rejectReason":null,"isReportedAbuse":false,"rejectUser":null,"rejectTime":null,"rejectActorType":null},"ForumReplyMessage:message:158894":{"__typename":"ForumReplyMessage","uid":158894,"id":"message:158894","entityType":"FORUM_REPLY","eventPath":"category:TestComplete_forum/community:nwkab66374board:testcomplete-questions/message:158858/message:158894","revisionNum":1,"author":{"__ref":"User:user:76784"},"readOnly":false,"repliesCount":1,"depth":1,"hasGivenKudo":false,"subscribed":false,"board":{"__ref":"Forum:board:testcomplete-questions"},"parent":{"__ref":"ForumTopicMessage:message:158858"},"conversation":{"__ref":"Conversation:conversation:158858"},"subject":"Re: Resizing Window","moderationData":{"__ref":"ModerationData:moderation_data:158894"},"body":"
Browsers.Item(bws).Run(url)
Sys.Browser.BrowserWindow(0).Maximize
","body@stripHtml({\"removeProcessingText\":false,\"removeSpoilerMarkup\":false,\"removeTocMarkup\":false,\"truncateLength\":200})@stringLength":"69","kudosSumWeight":0,"postTime":"2018-02-15T22:14:10.804-08:00","lastPublishTime":"2018-02-15T22:14:10.804-08:00","metrics":{"__typename":"MessageMetrics","views":4671},"visibilityScope":"PUBLIC","placeholder":false,"showMoveIndicator":false,"originalMessageForPlaceholder":null,"isEscalated":null,"solution":false,"replies":{"__typename":"MessageConnection","pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null},"edges":[{"__typename":"MessageEdge","cursor":"MjUuNHwyLjF8b3wzfDE0OjAsMzk6MXwx","node":{"__ref":"ForumReplyMessage:message:158897"}}]},"customFields":[],"attachments":{"__typename":"AttachmentConnection","edges":[],"pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null}}},"ModerationData:moderation_data:158897":{"__typename":"ModerationData","id":"moderation_data:158897","status":"APPROVED","rejectReason":null,"isReportedAbuse":false,"rejectUser":null,"rejectTime":null,"rejectActorType":null},"ForumReplyMessage:message:158897":{"__typename":"ForumReplyMessage","author":{"__ref":"User:user:73982"},"id":"message:158897","entityType":"FORUM_REPLY","eventPath":"category:TestComplete_forum/community:nwkab66374board:testcomplete-questions/message:158858/message:158897","revisionNum":1,"uid":158897,"depth":2,"hasGivenKudo":false,"subscribed":false,"board":{"__ref":"Forum:board:testcomplete-questions"},"parent":{"__ref":"ForumReplyMessage:message:158894"},"conversation":{"__ref":"Conversation:conversation:158858"},"subject":"Re: Resizing Window","moderationData":{"__ref":"ModerationData:moderation_data:158897"},"body":"sadly i cant remove answers ...
kaiiii wrote:Browsers.Item(bws).Run(url)
Sys.Browser.BrowserWindow(0).Maximize
thx for not reading the question, still looking for an answer
","body@stripHtml({\"removeProcessingText\":false,\"removeSpoilerMarkup\":false,\"removeTocMarkup\":false,\"truncateLength\":200})@stringLength":"200","kudosSumWeight":0,"repliesCount":0,"postTime":"2018-02-15T22:34:19.215-08:00","lastPublishTime":"2018-02-15T22:34:19.215-08:00","metrics":{"__typename":"MessageMetrics","views":4669},"visibilityScope":"PUBLIC","placeholder":false,"showMoveIndicator":false,"originalMessageForPlaceholder":null,"isEscalated":null,"solution":false,"replies":{"__typename":"MessageConnection","pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null},"edges":[]},"customFields":[],"attachments":{"__typename":"AttachmentConnection","edges":[],"pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null}}},"QueryVariables:MessageSolutions":{"__typename":"QueryVariables","id":"MessageSolutions","value":{"first":10,"constraints":{"topicId":{"eq":"message:158858"},"solution":{"eq":true}},"sorts":{"postTime":{"direction":"ASC"}},"useAvatar":true,"useAuthorLogin":true,"useAuthorRank":false,"useBody":true,"useKudosCount":false,"useTimeToRead":false,"useMedia":true,"useRepliesCount":false,"useSearchSnippet":false,"useAcceptedSolutionButton":true,"useSolvedBadge":false,"useAttachments":true,"useTags":false,"useUserHoverCard":false,"useNodeHoverCard":false,"usePreviewSubjectModal":false,"useMessageStatus":false}},"CachedAsset:text:en_US-components/messages/EscalatedMessageBanner-1749759144459":{"__typename":"CachedAsset","id":"text:en_US-components/messages/EscalatedMessageBanner-1749759144459","value":{"escalationMessage":"Escalated to Salesforce by {username} on {date}","viewDetails":"View Details","modalTitle":"Case Details","escalatedBy":"Escalated by: ","escalatedOn":"Escalated on: ","caseNumber":"Case Number: ","status":"Status: ","lastUpdateDate":"Last Update: ","automaticEscalation":"automatic escalation","anonymous":"Anonymous"},"localOverride":false},"CachedAsset:text:en_US-components/users/UserLink-1749759144459":{"__typename":"CachedAsset","id":"text:en_US-components/users/UserLink-1749759144459","value":{"authorName":"View Profile: {author}","anonymous":"Anonymous"},"localOverride":false},"CachedAsset:text:en_US-shared/client/components/users/UserRank-1749759144459":{"__typename":"CachedAsset","id":"text:en_US-shared/client/components/users/UserRank-1749759144459","value":{"rankName":"{rankName}","userRank":"Author rank {rankName}"},"localOverride":false},"CachedAsset:text:en_US-components/messages/MessageTime-1749759144459":{"__typename":"CachedAsset","id":"text:en_US-components/messages/MessageTime-1749759144459","value":{"postTime":"Published: {time}","lastPublishTime":"Last Update: {time}","conversation.lastPostingActivityTime":"Last posting activity time: {time}","conversation.lastPostTime":"Last post time: {time}","moderationData.rejectTime":"Rejected time: {time}"},"localOverride":false},"CachedAsset:text:en_US-components/messages/MessageSolvedBadge-1749759144459":{"__typename":"CachedAsset","id":"text:en_US-components/messages/MessageSolvedBadge-1749759144459","value":{"solved":"Solved"},"localOverride":false},"CachedAsset:text:en_US-components/messages/MessageSubject-1749759144459":{"__typename":"CachedAsset","id":"text:en_US-components/messages/MessageSubject-1749759144459","value":{"noSubject":"(no subject)"},"localOverride":false},"CachedAsset:text:en_US-components/messages/MessageBody-1749759144459":{"__typename":"CachedAsset","id":"text:en_US-components/messages/MessageBody-1749759144459","value":{"showMessageBody":"Show More","mentionsErrorTitle":"{mentionsType, select, board {Board} user {User} message {Message} other {}} No Longer Available","mentionsErrorMessage":"The {mentionsType} you are trying to view has been removed from the community.","videoProcessing":"Video is being processed. Please try again in a few minutes.","bannerTitle":"Video provider requires cookies to play the video. Accept to continue or {url} it directly on the provider's site.","buttonTitle":"Accept","urlText":"watch"},"localOverride":false},"CachedAsset:text:en_US-components/messages/MessageCustomFields-1749759144459":{"__typename":"CachedAsset","id":"text:en_US-components/messages/MessageCustomFields-1749759144459","value":{"CustomField.default.label":"Value of {name}"},"localOverride":false},"CachedAsset:text:en_US-components/messages/MessageReplyButton-1749759144459":{"__typename":"CachedAsset","id":"text:en_US-components/messages/MessageReplyButton-1749759144459","value":{"repliesCount":"{count}","title":"Reply","title@board:BLOG@message:root":"Comment","title@board:TKB@message:root":"Comment","title@board:IDEA@message:root":"Comment","title@board:OCCASION@message:root":"Comment"},"localOverride":false},"CachedAsset:text:en_US-components/messages/MessageSolutionList-1749759144459":{"__typename":"CachedAsset","id":"text:en_US-components/messages/MessageSolutionList-1749759144459","value":{"emptyDescription":"No has been message solutions yet"},"localOverride":false},"CachedAsset:text:en_US-components/messages/MessageListMenu-1749759144459":{"__typename":"CachedAsset","id":"text:en_US-components/messages/MessageListMenu-1749759144459","value":{"postTimeAsc":"Oldest","postTimeDesc":"Newest","kudosSumWeightAsc":"Least Liked","kudosSumWeightDesc":"Most Liked","sortTitle":"Sort By","sortedBy.item":" { itemName, select, postTimeAsc {Oldest} postTimeDesc {Newest} kudosSumWeightAsc {Least Liked} kudosSumWeightDesc {Most Liked} other {}}"},"localOverride":false},"CachedAsset:text:en_US-components/messages/AcceptedSolutionButton-1749759144459":{"__typename":"CachedAsset","id":"text:en_US-components/messages/AcceptedSolutionButton-1749759144459","value":{"accept":"Mark as Solution","accepted":"Marked as Solution","errorHeader":"Error!","errorAdd":"There was an error marking as solution.","errorRemove":"There was an error unmarking as solution.","solved":"Solved","topicAlreadySolvedErrorTitle":"Solution Already Exists","topicAlreadySolvedErrorDesc":"Refresh the browser to view the existing solution"},"localOverride":false},"CachedAsset:text:en_US-shared/client/components/common/Pager/PagerLoadMore-1749759144459":{"__typename":"CachedAsset","id":"text:en_US-shared/client/components/common/Pager/PagerLoadMore-1749759144459","value":{"loadMore":"Show More"},"localOverride":false},"CachedAsset:text:en_US-components/messages/MessageView/MessageViewInline-1749759144459":{"__typename":"CachedAsset","id":"text:en_US-components/messages/MessageView/MessageViewInline-1749759144459","value":{"bylineAuthor":"{bylineAuthor}","bylineBoard":"{bylineBoard}","anonymous":"Anonymous","place":"Place {bylineBoard}","gotoParent":"Go to parent {name}"},"localOverride":false},"CachedAsset:text:en_US-shared/client/components/users/UserAvatar-1749759144459":{"__typename":"CachedAsset","id":"text:en_US-shared/client/components/users/UserAvatar-1749759144459","value":{"altText":"{login}'s avatar","altTextGeneric":"User's avatar"},"localOverride":false},"CachedAsset:text:en_US-shared/client/components/ranks/UserRankLabel-1749759144459":{"__typename":"CachedAsset","id":"text:en_US-shared/client/components/ranks/UserRankLabel-1749759144459","value":{"altTitle":"Icon for {rankName} rank"},"localOverride":false},"CachedAsset:text:en_US-components/common/ExternalLinkWarningModal-1749759144459":{"__typename":"CachedAsset","id":"text:en_US-components/common/ExternalLinkWarningModal-1749759144459","value":{"title":"Leaving the Community","description":"You're about to leave this site and navigate to an external domain. Are you sure you want to continue?","action.submit":"Continue","action.cancel":"Go Back"},"localOverride":false}}}},"page":"/forums/ForumMessagePage/ForumMessagePage","query":{"boardId":"testcomplete-questions","messageSubject":"resizing-window","messageId":"158858"},"buildId":"3XH0qYWYCnEYycuN5W4S8","runtimeConfig":{"buildInformationVisible":false,"logLevelApp":"info","logLevelMetrics":"info","surveysEnabled":true,"openTelemetry":{"clientEnabled":false,"configName":"smartbear","serviceVersion":"25.4.0","universe":"prod","collector":"http://localhost:4318","logLevel":"error","routeChangeAllowedTime":"5000","headers":"","enableDiagnostic":"false","maxAttributeValueLength":"4095"},"apolloDevToolsEnabled":false,"quiltLazyLoadThreshold":"3"},"isFallback":false,"isExperimentalCompile":false,"dynamicIds":["components_seo_QAPageSchema","components_community_Navbar_NavbarWidget","components_community_Breadcrumb_BreadcrumbWidget","components_messages_TopicWithThreadedReplyListWidget","components_messages_MessageListForNodeByRecentActivityWidget","components_messages_RelatedContentWidget","components_customComponent_CustomComponent","components_messages_MessageView_MessageViewStandard","components_messages_ThreadedReplyList","components_messages_EscalatedMessageBanner","shared_client_components_common_List_UnstyledList","components_messages_MessageView","shared_client_components_common_Pager_PagerLoadMore","components_messages_MessageView_MessageViewInline","components_customComponent_CustomComponentContent_TemplateContent"],"appGip":true,"scriptLoader":[]}