It get stuck when Rselenium meets this URL, it will be all right if I change to some other webpage.as you can see the below code "getCurrentUrl"& "getPageSource" are the most basical operation.
url = "https://sycm.taobao.com/custom/login.htm?_target=http://sycm.taobao.com/"
# Build up the environment -----------------------------------------------------
library(RSelenium)
library(wdman)
pDrv <- phantomjs(port = 4567L)
remDr <- remoteDriver(browserName = "firefox", port = 4567L)
remDr$open()
remDr$navigate(url)
#show the page -----------------------------------------------------------------
remDr$maxWindowSize()
remDr$screenshot(display = TRUE)
# basic operation by seleniumR
remDr$getCurrentUrl()
remDr$getPageSource()[[1]]