在if else语句中使用RSelenium findElement函数

时间:2015-10-13 23:22:56

标签: web-scraping rselenium

我一直在尝试使用RSelenium而无法弄清楚如何制作一个' if' '否则'使用findElement函数时的语句。有人可以帮助解决下面这个基本问题吗?这只是一个了解我的整体代码的测试。基本上,我想看一个页面是否有一个术语,是否确实进行了计算。非常感谢!

启动Selenium Server -------------------------------------------- ------------

checkForServer()
startServer()
remDrv <- remoteDriver()
remDrv$open()


# Simulate browser session

remDrv$navigate('http://agcensus.dacnet.nic.in/districtsummarytype.aspx')

# Test if the page has the words 'District Tables' then make a calculation

if (remDrv$findElement(using = "xpath", "//*[contains(text(), 'District Tables')]"))
  {2+2}
else 
  {4+4}

0 个答案:

没有答案