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