This question already has answers here:
Selenium webdriver using switch_to_windows() and printing the title doesn't print the title.
(2 answers)
Closed 6 years ago.
Is there a way to focus on the latest window open? or switching to the window by getting the current handle of the window?
I was able to print the only window that is opened which is:
CDwindow-e8d2af8d-33e8-4538-be6b-6e61f470bf9a
this answer worked for me:
driver.switch_to_window(driver.window_handles[-1])
title=driver.title
Related
This question already has answers here:
how to clear the screen in python [duplicate]
(1 answer)
How to clear the interpreter console?
(31 answers)
Closed 3 years ago.
I'm trying to clear the shell window when the actual code runs. I've done a couple different searches and saw some options but none seem to work. Here is the one I've been trying to get to work (I'm using Python 3.8.1).
import os
os.system('cls')
This question already has answers here:
Find the reCAPTCHA element and click on it -- Python + Selenium
(2 answers)
How to click on the reCAPTCHA using Selenium and Java
(5 answers)
Closed 3 years ago.
I am trying to click on a recaptcha but everything I tried resulted in the inability to identify the iframe on the site http://database.globalreporting.org/reports/51732/download-report-pdf/. I tried finding the iframe element without switching frames, switching frames to find the element, and changing the browser to Firefox from Chrome. I'm finally relenting an wondering if somebody here could help.
This question already has answers here:
Clear terminal in Python [duplicate]
(27 answers)
Closed 4 years ago.
I am making a text based rpg in python 3 and the output window gets very cluttered cluttered. I was wondering if there was a way to clear the screen automatically from time to time.
import os
os.system('cls')
You can use os.system('clear') if you are on linux.
This question already has answers here:
How to make a Tkinter window jump to the front?
(12 answers)
Closed 6 years ago.
is there any way to make a tkinter program on top of all windows? Like switching to a new window will not minimize or put the tkinter program back, thanks!
Yes. You just need to set the window manager attribute topmost:
mywindow.wm_attributes("-topmost", True)
This question already has answers here:
Get screenshot on Windows with Python?
(9 answers)
Closed 9 years ago.
Im working on a program and i was wondering if i can use python to snapshot my screen and possibly save it on my computer ?
If you are using Windows, ImageGrab looks like it would work (http://effbot.org/imagingbook/imagegrab.htm).