You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We are currently developing an e2e test using espresso web we successfully go through the first two pages ( click Continue and bank selection) when we land on the third page (Credential Screen). After setting Username and Password field values we noticed the following behaviour the submit button doesn't get enabled and the input field show both placeholder text and the values we are setting. We assume the onChange event doesn't get triggered. Is this an error on our behalf or a known issue of esrpesso web?
<img width="306" alt="issue" src="https://user-images.githubusercontent.com/113026279/220319194-6c1c74d2-c8d8-42d9-8b8e-788a7b2025ef.png">
1. (Best) A link to a minimal demo app showing the faulty behaviour (a modified version of the sample app would be a great start)
1. (Better) A concise code sample which can be dropped into fresh application
1. A snippet of code for your configuration for opening Link
The text was updated successfully, but these errors were encountered:
We're experiencing the same issue with the routing number. We are trying to write automated tests with Espresso Web that involve going through the account number link flow, but this issue is blocking us from doing that.
internal fun enterRoutingNumber(number: String) {
webView
.findElementUntil(locator = Locator.ID, value = "device-input")
.perform(clearElement())
.perform(webClick())
.perform(webKeys(number))
}
Here's what it looks like with the test routing number 110000000
The problem
We are currently developing an e2e test using espresso web we successfully go through the first two pages ( click Continue and bank selection) when we land on the third page (Credential Screen). After setting Username and Password field values we noticed the following behaviour the submit button doesn't get enabled and the input field show both placeholder text and the values we are setting. We assume the
onChange
event doesn't get triggered. Is this an error on our behalf or a known issue of esrpesso web?Environment
onWebView()
.withElement(findElement(Locator.XPATH, "Xpath"))
The text was updated successfully, but these errors were encountered: