Questions tagged [maximize-window]

This tag refers to the process of increasing the size of a UI window to its fullest, so that it takes up the entire screen.

134 questions
0
votes
0 answers

Browser window is minimized when switching between tabs in selenium java

Firefox browser window is minimized when switching between two tabs. Any way to fix this? This didn't help. DRIVER.manage().window().maximize(); Open URL code: public void openUrl(String loginUrl) throws Exception { …
Java User
  • 57
  • 6
0
votes
1 answer

MFC window maximized, but to wrong top coordinate

Sometimes, when I use ShowWindow(SW_SHOWMAXIMIZED), my MFC window is maximized, but it is not positioned at coordinates (0, 0), as it should, it is moved down, for around 30-40 pixels. Any tip on what might be wrong?
Obucinac
  • 56
  • 4
0
votes
1 answer

Enlarge form controls when the maximize button is clicked

I have designed a WinForm in vb.NET with VS2017. I would now like to add a feature whereby the form has two sizes - the normal size it initially loads as and also a larger size that is triggered when the user clicks the maximize button on the form.…
Jay
  • 143
  • 2
  • 13
0
votes
1 answer

Window.maximize() fails on Firefox ESR v52.3.0

I have a regression pack created in Selenium 2.45.0 that I recently upgraded to Selenium (seleniump-java 3.4.0 and selenium server 3.7.1). Currently I have Firefox ESR v52.3.0 on my system. After upgrading to selenium 3.4.0 window.maximize() is…
0
votes
0 answers

Windows 7 - start process foreground

my problem occures on Windows 7. Background: I have two applications: a) MainApp - software which should always run in foreground, maximized (with no taskbar) b) Watchdog - software which monitors MainApp if it runs properly and starts new MainApp…
Pawel
  • 280
  • 3
  • 10
0
votes
1 answer

Controls do not resize when maximised but do when resized by dragging - wpf

Question is as per WPF: when I maximize my window, controls do not resize which is unanswered. I have a WPF form with some controls which are tied to at least two edges of the form. I have added code to sizechanged event which resizes controls as a…
Ritchie
  • 15
  • 4
0
votes
2 answers

JFrame in full screen without undecorated

I am using Java8 on Windows machine developing with latest community edition of IntelliJ. To make JFrame full screen I find below solution where I faced one different behavior which I want to get verified. Solution I took from JFrame full screen As…
shaILU
  • 2,050
  • 3
  • 21
  • 40
0
votes
1 answer

What is the default size for `driver.manage().window().maximize()` for PhantomJs and HtmlUnit when using selenium-webdriver?

Headless mode is meant to be used on computers without screens, so how does PhantomJS and HtmlUnit figure out the maximized size ?
hemanik
  • 965
  • 3
  • 14
  • 33
0
votes
0 answers

X forward - Maximize toplevel window

I have a GUI, that I need to run on Windows from a Linux machine. A top level window is created, and I would like to maximize this window, keeping the menu bar. mytop = Toplevel() mytop.wm_attributes("-zoomed", "1") The above snippet works…
st.ph.n
  • 549
  • 2
  • 5
  • 19
0
votes
1 answer

NightwatchJS .windowMaximize() method not working

I am using NightwatchJS to test a web application. In the prelimary steps of my test, I am trying to utilize a method that should maximize the browser window, but it does not seem to work. The method is .windowMaximize() and can be found in the API…
gwydion93
  • 1,681
  • 3
  • 28
  • 59
0
votes
4 answers

Exception in thread "main" org.openqa.selenium.WebDriverException: unknown error: cannot get automation extension

I am trying to login page using below script but while maximize window it shows me below error. Exception in thread "main" org.openqa.selenium.WebDriverException: unknown error: cannot get automation extension from unknown error: page could…
Prasanna
  • 3
  • 1
  • 1
  • 3
0
votes
1 answer

C# How do I leave the maximized window as it is?

I am using visual studio 2010 to do my C# GUI. The current problem that I am facing is that after maximizing a window, it stays there but when I go to other forms, the window will go back to its original size. How do I leave the maximized window…
athgap
  • 165
  • 1
  • 6
  • 13
0
votes
2 answers

When a XtraForm is maximized, other forms are also affected

I'm using Visual Studio 2010 with Devexpress 15.1 Demo version. I'm developing my graduate project. When I maximize any XtraForm, other XtraForms are also affecting and all of them has been maximized. Further if I make WindowState to Normal, all of…
Burak H.
  • 1
  • 1
0
votes
0 answers

Java swing: How to hide window Maximizer option?

Like this Image Example Can anyone please suggest me how to hide the window maximizer/minimizer option from JFrame or Window?
0
votes
0 answers

Enabling/Activating the Maximize button on JFrame that is unresizable

So, I have a JFrame. Nothing special about it, besides: this.setResizable(false); I do this, because I do not want the user to change the size of the window during its normal (non-maximized non-minimized) state. However, I still want the user to be…
RaKXeR
  • 152
  • 2
  • 16
1 2 3
8
9