按钮的定位器不起作用。因为我不能再往前走了。我试过xpath,cssSelector,ID。这些都没有奏效。我上传了代码。我是硒的新人。最后一个命令不起作用。
public class Upload {
public static void main(String[] args) {
System.setProperty("webdriver.chrome.driver","E:\\chromedriver_win32\\chromedriver.exe");
WebDriver driver = new ChromeDriver();
JavascriptExecutor js = (JavascriptExecutor) driver;
driver.get("http://888.b7omc88t.io/");
driver.manage().window().maximize();
driver.manage().timeouts().implicitlyWait(10, TimeUnit.SECONDS);
//code for boomcast portal login
driver.findElement(By.xpath("/html/body/div[1]/div/div/section/form/div[1]/input")).click();
driver.findElement(By.xpath("/html/body/div[1]/div/div/section/form/div[1]/input")).sendKeys("fatima@ssd-tech.com");
driver.findElement(By.xpath("/html/body/div[1]/div/div/section/form/div[2]/input")).click();
driver.findElement(By.xpath("/html/body/div[1]/div/div/section/form/div[2]/input")).sendKeys("1234");
driver.findElement(By.xpath("/html/body/div[1]/div/div/section/form/div[3]/button")).click();
driver.findElement(By.xpath("/html/body/div[2]/div/div/div[1]/div/div[3]/div/ul/li[4]/a")).click();
driver.findElement(By.xpath("/html/body/div[2]/div/div/div[1]/div/div[3]/div/ul/li[4]/ul/li/a")).click();
driver.findElement(By.xpath("//*[@id=\"smbscheduleobdStep2\"]")).click();
driver.findElement(By.xpath("/html/body/div[2]/div/div/div[3]/div/div/div[2]/div/form/div[1]/div[3]/div/div/div/input")).click();
driver.findElement(By.xpath("/html/body/div[2]/div/div/div[3]/div/div/div[2]/div/form/div[1]/div[3]/div/div/div/input")).sendKeys("01791719879");
driver.findElement(By.xpath("/html/body/div[2]/div/div/div[3]/div/div/div[2]/div/div[2]/a[3]")).click();
driver.findElement(By.cssSelector("#content > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div:nth-child(1) > form:nth-child(3) > div:nth-child(5) > div:nth-child(3) > div:nth-child(2) > button:nth-child(1)")).click(); // This line is not getting executed
}
按钮的HTML:
<div class="col-md-3 text-right">
<button id="smbscheduleobdStep3" type="button" class="btn btn-block">Saved files</button>
</div>
答案 0 :(得分:0)
根据您提供的单击按钮所提供的HTML,您必须引导 WebDriverWait 以使按钮可单击,您可以使用以下代码行:
import org.openqa.selenium.By;
import org.openqa.selenium.support.ui.WebDriverWait;
import org.openqa.selenium.support.ui.ExpectedConditions;
// other code lines
new WebDriverWait(driver, 20).until(ExpectedConditions.elementToBeClickable(By.xpath("//button[@class='btn btn-block' and @id='smbscheduleobdStep3' and contains(.,'Saved files')]"))).click();
答案 1 :(得分:0)
By.cssSelector("#smbscheduleobdStep3")
driver.manage().switchTo().frame()
切换。当然可以使用上面提到的WaitDriver。