当前位置: 首页 > 工具软件 > Window Switch > 使用案例 >

新人在python中selenium使用driver.switch_to.window

江雅懿
2023-12-01

wd.window_handles
# 显示所有的窗口

print(wd.current_url)
#打印当前页面地址

wd.switch_to_window(wd.window_handles[0]) 

#显示第一个窗口,我开始写的是[1]没显示成功,换成[0]就成了

print(wd.current_url)
# wd.current_url
#获得当前页面地址

wd.switch_to_default_content()
#从之前页面切出来

wd.implicitly_wait(2)
#这里是写切换窗口之后的操作

 类似资料: