Selenium 页面跳转问题

https://blog.csdn.net/H_12306/article/details/81110428

https://www.cnblogs.com/yufeihlf/p/5689042.html

from time import sleep
from selenium import webdriver

def test():
    dr = webdriver.Chrome()
    dr.get("http://www.biao800.cn/index.php?m=content&c=index&a=listsnews&catid=59")

    # 第一次获取所有窗口
    all_w1 = dr.window_handles
    print('所有窗口1', all_w1)

    sleep(1)
    dr.find_element_by_xpath('//*[@id="redul"]/li[1]/a').click()

    # 获取当前窗口
    current_window1 = dr.current_window_handle
    # 默认第一个窗口
    print('第一个窗口',current_window1)

    # 第二次获取所有窗口后发现 多了一个
    all_w2 = dr.window_handles
    print('所有窗口2',all_w2)

    dr.switch_to.window(all_w2[1])
    sleep(5)
    content = dr.find_element_by_id('printarea').text

    print(content)



if __name__  == '__main__':
    test()

 

你可能感兴趣的:(Python,selenium)