Wait for response matchers not working
See original GitHub issueDescribe the bug I want this to return the result of route search. So ${r} should be that result. And matcher should work as a JS regexp.
To Reproduce
*** Settings ***
Library Browser
Suite Setup New Browser headless=${False}
*** Test Cases ***
Graphhopper
New Page https://graphhopper.com/maps/
wait until network is idle timeout=5s
type text //*[@id="0_Input"] Turku
type text //*[@id="1_Input"] Helsinki
wait until network is idle timeout=5s
${p}= promise to wait for response matcher=/.*\/api\/1.*/ timeout=5s
Click \#searchButton
${r}= wait for ${p}
Issue Analytics
- State:
- Created 3 years ago
- Comments:7 (6 by maintainers)
Top Results From Across the Web
Wait for response matcher example - Robot Framework
Hello, In my test I am trying to catch the end of action triggered by a click before moving on. Using javascript +...
Read more >React Testing Library's waitFor not working - Stack Overflow
I found the answer here: React Testing Library - using 'await wait()' after fireEvent. TLDR: "You can not use wait with getBy*.
Read more >Waiting matcher · Issue #580 · rspec/rspec-expectations - GitHub
I'd like to propose to add a matcher that will retry given block until it will match all other matchers or time expired....
Read more >I received an error that my name, date of ... - Federal Student Aid
I received an error that my name, date of birth, and Social Security number listed on the FAFSA form do not match my...
Read more >Using Service Workers - Web APIs | MDN
This article provides information on getting started with service workers, including basic architecture, registering a service worker, ...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Ok I tried
\\
to escape?
and it didn’t work, but\\\\?
works, I don’t know if it’s the expected behavior but at least I solved the problem!This now works after https://github.com/MarketSquare/robotframework-browser/pull/432