我正在尝试用这个chromote
包来替代RSelenium
. 我了解如何导航到特定 URL,但无法找到用于获取当前 URL 的命令。其中RSelenium
有getCurrentUrl()
;在webdriver
它是getUrl()
。
中是否有等效项chromote
?
这是我所得到的:
library(chromote)
session <- ChromoteSession$new()
session$Page$navigate("https://stackoverflow.com")
# some clicks etc on the page
# Now where did I end up?