我正在自动化购物的Web应用程序。 在特定页面中,我必须通过单击提交按钮来提交。我在selenium web驱动程序中编写了同样的事情。 单击该按钮但它从未导航到下一页,它不会抛出任何异常,我可以看到测试成功运行。
package org.karmaloop.testcase;
import java.io.File;
import java.io.IOException;
import org.junit.After;
import org.junit.AfterClass;
import org.junit.Before;
import org.junit.BeforeClass;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.BlockJUnit4ClassRunner;
import org.karmaloop.configuration.Testconfiguration;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.chrome.ChromeDriverService;
import org.openqa.selenium.remote.DesiredCapabilities;
import org.openqa.selenium.remote.RemoteWebDriver;
@RunWith(BlockJUnit4ClassRunner.class)
public class testcase1 {
private static ChromeDriverService srv;
private WebDriver driver;
@BeforeClass
public static void StartServer() throws IOException {
// Below file path to Chrome browser should be changed accordingly
srv = new ChromeDriverService.Builder()
.usingDriverExecutable(
new File("D:\\chromedriver\\chromedriver.exe"))
.usingAnyFreePort().build();
srv.start();
}
@AfterClass
public static void tearDownAfterClass() throws Exception {
}
@Before()
public void setUp() throws Exception {
driver = new RemoteWebDriver(srv.getUrl(), DesiredCapabilities.chrome());
}
@After
public void tearDown() throws Exception {
}
@Test
public void test() throws Exception {
Normal_Checkout();
}
private void Normal_Checkout() throws Exception {
//To get commented
driver.get("https://m.karmaloop.com/product/The-Superstar-80s-GRF-Sneaker-in-Wheat-Black-Chalk/384883");
driver.findElement(By.cssSelector(Testconfiguration.size_dropdown)).click();
System.out.println("success");
Thread.sleep(4000);
driver.findElement(By.xpath(Testconfiguration.select_size)).click();
Thread.sleep(4000);
driver.findElement(By.xpath(Testconfiguration.addtocart_button)).click();
Thread.sleep(7000);
driver.findElement(By.xpath(Testconfiguration.pcheckout_button)).click();
Thread.sleep(5000);
// To get commented
driver.findElement(By.xpath(Testconfiguration.checkout_logintxtbox)).sendKeys(Testconfiguration.checkout_login_username);
Thread.sleep(5000);
driver.findElement(By.xpath(Testconfiguration.checkout_passwordtxtbox)).sendKeys(Testconfiguration.checkout_login_password);
Thread.sleep(5000);
driver.findElement(By.xpath(Testconfiguration.checkout_loginbtn)).click();
Thread.sleep(10000);
System.out.println("Passed before checkout");
driver.findElement(By.xpath(Testconfiguration.submit_button));
Thread.sleep(20000);
System.out.println("submit clicked");
}}
=============================================== =================================== 我已经使用xpath来提交按钮来点击。任何人都可以帮我解决这个问题。
答案 0 :(得分:0)
我之前在使用硒时遇到过这个问题,虽然我没有解决方案,但我确实有大部分时间都可以解决这个问题。
单击提交按钮后,如果您尝试与下一页上的元素进行交互,Selenium应该通过NoSuchElementException。抓住这个并尝试重新点击提交按钮(因为您可以假设该页面未加载)。十分之九,这对我有用。
哦,您可能会发现有用的提示,而不是每次加载页面后手动等待五秒钟,请使用implicitlyWait。 browser.implicitlyWait(30)将使浏览器等待最多30秒,以便在抛出NoSuchElementException之前加载页面。
希望这会有所帮助。祝你好运。
编辑:我可能会弄错,我相信它建议你不要使用XPath作为你的选择器,除非你绝对不得不这样做,因为它比其他选择(比如ID)要慢得多,因为它必须通过XPath 。答案 1 :(得分:0)
您可以等到页面加载完毕。
示例:
//wait until page is loaded
String title = "Should have the title of the page that should be loaded";
WebDriverWait wait = new WebDriverWait(driver, 60);
wait.until(ExpectedConditions.titleIs(title));
此代码将等待60秒,直到页面标题与作为输入传递的页面标题匹配。
答案 2 :(得分:0)
我遇到了一个问题,它单击一个元素,但是没有重定向到下一页,也没有出现异常。我尝试使用Actions类,Javascript执行程序,Robot类和所有的wait语句,但是没有得到结果。这个解决方案对我有用。
try {
//Next page element
driver.findElement(By.xpath("//div[@class='web']/label/span[contains(text(), 'Congratulations!')]")).click();
} catch (Exception e) {
//current page element which is not redirecting after performing click operation
driver.findElement(By.xpath("//div[@class='form-main-container']/button")).click();
}
您必须尝试与下一页上的元素进行交互,并在try块中使用XPath作为元素,而在catch块中将XPath用于未重定向到下一页的元素
。