導航 (Navigate to)
一些基本的常用瀏覽器操作
get
模擬瀏覽器載入指定網頁
driver.get("https://selenium.dev")
current_url
取得當前的 URL
driver.current_url
使用情境
- 考慮到驗證 title 會遇到多國語系的問題
back
返回上一頁
driver.back()
forward
模擬按下瀏覽器下一頁的按鈕
driver.forward()
refresh
模擬按下瀏覽器重新整理的按鈕
driver.refresh()
使用情境
- 想要一次重新整理整頁,而不是局部。
title
取得 title 值
driver.title