我已經放入了linktext及其更正,但錯誤如元素...在點(750,38)不可點擊。元素不在可點擊的點
我試過代碼:
driver.get("https://staging.keela.co");
WebDriverWait wait = new WebDriverWait (driver, 15);
WebElement element = wait.until(ExpectedConditions.elementToBeClickable(By.linkText("Log In")));
element.click();
//waiting for to load
driver.findElement(By.xpath("//input[@id='login-email']")).sendKeys("[email protected]");
driver.findElement(By.xpath("//input[@id='login-password']")).sendKeys("keela");
driver.findElement(By.xpath("//button[@class='btn btn-sm btn-block btn-primary']")).click();
@Bandana Singh,你試過這段代碼嗎?請用你的代碼替換我的代碼,讓我對你工作正常嗎? –
我試過在這裏還是用相同的代碼 –
你確定,你把我的代碼正確地替換了嗎?因爲相同的代碼工作正常,沒有顯示任何錯誤。 –