from selenium import webdriver wb = webdriver.Ie() for i in range(5): wb.get('http://www.baidu.com') time.sleep(5) print(i) wb.quit()
为什么这个循环只能运行1次?