我想创建一个布尔值,告诉我,如果我在www.google.com上,我尝试使用一些失败的代码,因为我无法在字符串上执行此操作。我需要创建条件逻辑,其中程序运行一组特定的代码,如果它在一个暂存和一个不同的集合,如果它在生产环境中。这里有一些代码可以帮助这个过程。
boolean isPresent = driver.findElements(By.Xpath"...").size() == 0; //I want this to look for the website
if(isPresent) //If it's on the website I want then this else that code.
{
driver.findElement(by.xpath("...").click();
}
else
{
Assert.assertTrue(enterPledge.Whatevert));
}