I want to get the size of the browser window using Delphi, how can I do this?
You can get it via the window
class from the WEB
unit:
function GetBrowserWindowSize: String;
begin
Result := IntToStr(window.outerWidth) + 'x' + IntToStr(window.outerHeight);
end;