I was able to extraction the content of the table in the form of a character vector (Note : I used Windows for this example).
library(RDCOMClient)
library(stringr)
IEApp <- COMCreate("InternetExplorer.Application")
IEApp[['Visible']] <- TRUE
IEApp$Navigate("http://liveindex.org/")
Sys.sleep(5)
doc <- IEApp$Document()
Sys.sleep(5)
inner_Text <- doc$documentElement()$innerText()
inner_Text_Splitted <- strsplit(inner_Text, "\n")[[1]]
inner_Text_Splitted <- inner_Text_Splitted[nchar(inner_Text_Splitted) < 1000]
inner_Text_Splitted <- inner_Text_Splitted[inner_Text_Splitted != "\r"]
inner_Text_Splitted <- inner_Text_Splitted[inner_Text_Splitted != " \r"]
inner_Text_Splitted <- inner_Text_Splitted[inner_Text_Splitted != " \r"]
# More cleaning required but the information of the table is in the variable inner_Text_Splitted
More cleaning is required of the variable inner_Text_Splitted, but the information is there. Also, you could achieve a similar result with the R package RSelenium.