Windows OS is full of windows, even objects inside windows as we know them are also windows. Each window has a handle that is a pointer to the memory in which information about the window is stored.
Questions tagged [window-handles]
252 questions
0
votes
0 answers
How can I close certificate authentication pop-up
Recently in our application we have added the Certification authentication and when ever we access the application the authentication pop-up is displayed and we have to select the correct authentication and click on the Ok button. I tried looking…

Vin
- 165
- 2
- 12
0
votes
0 answers
Showing WPFHidden window using windowHandle
I have created one WPF window and added some control to it.
Now I will get the window handle and hide the window.
I'll create separate application (console) and use the same windowHandle
to show the window using below…

Ashish Agrawal
- 33
- 12
0
votes
2 answers
How to switch to a new window in through Selenium
I have 1 3rd party integration as Paypal. When I will click on Place Order button it will navigate me from Place Order page to paypal page.
Can you please let me know how it will be work. I have tried below code and I will redirect to Paypal Page…

nikhil naphade
- 9
- 1
- 1
- 4
0
votes
3 answers
How to move selenium's focus to the new tab window?
I am clicking on a link, which results in new tab. I want to move to that tab, close that tab, and then again switch back to Parent window.
I have written following code, its showing error, Actually in my code, control is not moving to child window.…

Mamta Gupta
- 11
- 2
- 4
0
votes
1 answer
VB6 - Issues with being in the background to another program window?
I have created a VB6 program which runs in the background to another program. It means the program window will be in the back only to this other program. I am using this code for it,
Private Declare Function FindWindow1 Lib "User32" Alias…

Codename K
- 890
- 4
- 23
- 52
0
votes
4 answers
java.util.NoSuchElementException in iterator method
I am relatively new to coding.
Below is the code for my program which opens a windows(flipkart.com)> proceeds to the secondary window by clicking an icon inside the web-page. Now I want to generate the window handles for both first and second page…

Moin Ahmed
- 49
- 2
- 8
0
votes
1 answer
How to get TAPI HCALL handle?
I want to use lineBlindTransfer() to blindly transfer a connected telephony call.
Here is the declaration in the documentation:
LONG WINAPI lineBlindTransfer(
HCALL hCall,
LPCSTR lpszDestAddress,
DWORD dwCountryCode
);
I connected the…

hmak.soft
- 59
- 1
- 10
0
votes
0 answers
Application-switching window as a modal window
It is possible to set application-switching window as a Modal window (see definition)?
I mean, this window appears when I press Alt+Ctrl+Tab button at the same time and allows me navigate between opened applications typing "tab" key.
The problem…

Alberto Bricio
- 402
- 1
- 6
- 22
0
votes
1 answer
AutoIt how to unhide initial window with singleton
I have a singleton application that can be minimized to the system tray. It can happen that the user starts another instance of the application, and with _singleton I detect the first instance of the script and I activate the window before exiting…

ib11
- 2,530
- 3
- 22
- 55
0
votes
1 answer
Selenium with IE11 does not identify the other window opens using windows_handles in python
Currently i'm using selenium 3.6 with IE web driver version as 3.4.
There is an area in my application where i have to click on a button which downloads an excel.When i do this in IE using selenium it opens a new window of IE (not happening when you…

Zee
- 1
- 1
0
votes
1 answer
Need a way to determine the main form of the application is brought on top of the other windows from the task bar
My application when not in focus or minimized or behind some other windows need to show a notification window to bring attention. And need to dismiss the notification window when the user brings the application upfront.
I am able to determine…

soms
- 3
- 2
0
votes
1 answer
C++ uncorrect not required re-declaring of class member variable MFC handmade solution/project MS VS 2015
I tried to shorten a foreign code. I thougth I could save one variable.
The following given code is OK and shows a Windows Frame.
#include
// from source: http://www.codersource.net/2010/01/30/mfc-tutorial-part-1/
class…

CarpeDiemKopi
- 316
- 3
- 13
0
votes
1 answer
Error using Windows Handle Selelnium
Below is the code that I wrote where i am using windows handle to validate the url new window being opened after clicking on a link into new page.
package pages;
import java.io.IOException;
import org.openqa.selenium.By;
import…

Avinash Pandey
- 51
- 12
0
votes
1 answer
Windows handling in Selenium webdriver using java
I have a scenario as below
1. Login to the application
2. click on a button (say Buy)
3. This will take me to a new window opened with a new URL automatically
4. Perform actions in the new window
5. Quit
Kindly please provide the exact code to work…

Meghasri
- 103
- 1
- 7
- 13
0
votes
0 answers
About the WM_LBUTTONDOWN
The question is simple, I have a code that's using the PostMessage function like so :
public enum WMessages : int
{
WM_MOUSEMOVE= 0x0200,
WM_LBUTTONDOWN = 0x201,
WM_LBUTTONUP = 0x202,
…

matan justme
- 371
- 3
- 15