Hello
I am comparing the text entered in the user name field with the text i have mention below, and the text should fail in the html report generated by appium. But this is not the actual case the test is failing in eclipse console which is the desired behaviour but passing in the appium html report.
Please let me know what have i missed?
WebElement userName = driver.findElement(By.id(“custom_onboard_edittext_txt”));
driver.getKeyboard().sendKeys(“BABita @%^$&$* 1234567890 qwerty )(&&^^%%% ASDFGHJK");
assertEquals(userName.getText(), "BABita @%^$&$ 1234567890 qwerty )(”);

