RSelenium を使用しようとしていますが、findElement 関数を使用するときに「if」「else」ステートメントを作成する方法がわかりません。以下のこの基本的な問題を解決できる人はいますか? これは、コード全体の一部を理解するための単なるテストです。基本的に、ページに用語があるかどうか、および計算が行われるかどうかを確認したい. どうもありがとう!
Selenium サーバーの起動 ----------------------------------------------- ----------
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}