因此,如果我执行以下操作:
driver = webdriver.Chrome() # this results in the browser displaying the about page
driver.get("http://somesite.com/") # now the browser goes to the URL
然后,如果我通过浏览器中的 javascript 控制台检查历史长度,我得到的值为 2。我需要模拟使用 URL 打开新选项卡或窗口的情况,因此历史长度为 1。
提前致谢。