Selenium,Java-无法找到元素

问题描述 投票:0回答:1

我是自动化测试的初学者。我想自动化一个演示网站,但是我找不到元素“我的帐户”->“登录”网址:https://phptravels.net/home我试图通过CSSseletor,Xpath等来定位它,但是我总是收到错误-org.openqa.selenium.NoSuchElementException

public class LandingPage {

    public WebDriver driver;

    By myAccount = By.className("dropdown dropdown-login dropdown-tab");
    By login = By.xpath("//a[@class='dropdown-item active tr']");
    By navBar = By.id("mobileMenuMain");


    public LandingPage(WebDriver driver) {
        this.driver = driver;
    }

    public WebElement getMyAccount() {
        return driver.findElement(myAccount);
    }
    public WebElement getNavigation() {
        return driver.findElement(navBar);
    }

    public WebElement getLogin() {
        return driver.findElement(login);

-------------------------


@RunWith(Cucumber.class)
public class stepDefinition extends Base {

    @Given("^Initialize the browser with Chrome$")
    public void initialize_the_browser_with_chrome() throws Throwable {
        driver = initializeDriver();
    }

    @And("^Navigate to the \"([^\"]*)\" Website$")
    public void navigate_to_the_something_website(String strArg1) throws Throwable {
        driver.get(strArg1);

    }

   @And("^Click on My Account link in Home Page to land on sign in page$")
    public void click_on_My_Account_link_in_home_page_to_land_on_sign_in_page() throws Throwable {

       LandingPage landingPage = new LandingPage(driver);
       landingPage.getMyAccount().click();
       landingPage.getLogin().click();

       /*if (landingPage.getPopUpSize() > 0) {
           landingPage.getPopUp().click();
       }*/

   }
    @When("^User enters (.+) and (.+) and logs in$")
    public void user_enters_and_and_logs_in(String email, String password) throws Throwable {
        LoginPage loginPage = new LoginPage(driver);
        loginPage.getEmail().sendKeys(email);
        loginPage.getPassword().sendKeys(password);
        loginPage.getLoginbtn().click();
    }

    @Then("^Verify that user is successfully logged in$")
    public void verify_that_user_is_successfully_logged_in() throws Throwable {
        PortalHomePage p = new PortalHomePage(driver);
        Assert.assertTrue(p.getDemoUser().isDisplayed());
    }

    @And("^Close the browsers$")
    public void close_the_browsers() throws Throwable {
        driver.quit();
    }
}

有人可以帮忙吗?

java selenium xpath css-selectors cucumber
1个回答
0
投票

通过ID,您会遇到问题,因为ID dropdownCurrency在页面上使用了两次,并且按类别搜索,ID应该为.dropdown.dropdown-login.dropdown-tab

© www.soinside.com 2019 - 2024. All rights reserved.