Jacobvu84 / selenium-vietnam-training-course

Questions Tracking
7 stars 5 forks source link

Serenity, Appium - Lỗi Element not found #66

Closed nguyenthihongthuy closed 5 years ago

nguyenthihongthuy commented 5 years ago

Hi all, Em đang tìm hiểu về serenity , nhưng gặp phải lỗi - "[main] ERROR net.thucydides.core.steps.ConsoleLoggingListener - Timed out after 2 seconds. Element not found". File pages của em như sau:

@AndroidFindBy(id="com.kirin:id/edUserName")
private WebElement txt_username;

@AndroidFindBy(id="com.kirin:id/edPassword")
private WebElement txt_password;

@AndroidFindBy(id="com.kirin:id/btLogin")
private WebElement btn_submit;

public void enter_username (String username) {
    txt_username.sendKeys(username);

}
public void enter_password (String pass) {
    txt_password.sendKeys(pass);
}
public void click_login () {
    btn_submit.click();
}

Lỗi: image

ACE giúp em khắc phục lỗi này với ạ.