Description Usage Arguments Value See Also Examples
getCurrentUrl Retrieve the URL of the current page.
1  | getCurrentUrl(remDr, ...)
 | 
remDr | 
 An object of class "rDriver". A remote driver object see   | 
... | 
 Additonal function arguments - Currently passes the   | 
A character string is returned giving the current page URL.
Other navigation functions: back,
forward, getTitle,
go, refresh
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26  | ## Not run: 
  remDr <- remoteDr()
  remDr %>% go("http://www.google.com/ncr")
  # get the title
  remDr %>% getTitle
  # get the current page url
  remDr %>% getCurrentUrl
  # navigate
  remDr %>% go("http://www.bbc.co.uk")
  # go back
  remDr %>% (seleniumPipes::back)
  # go forward
  remDr %>% forward
  # refresh page
  remDr %>% refresh
  # close browser
  remDr %>% deleteSession
## End(Not run)
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.