-
Notifications
You must be signed in to change notification settings - Fork 192
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
search using search icon from /issues page seems unresponsive #1088
Comments
intern.js changes
also this line was added to the returned object for intern.js: to run the chromedriver for intern tests
|
Ah yeah, there is a difference here between Chrome and Firefox. STR (in Chrome):
Expected: Actual: |
Hm, I wonder if this is because we're using a |
(nope, not it, how strange) |
This is to prevent them from consuming the click event in Chrome, which apparently doesn't bubble up to the parent <button>?
This is to prevent them from consuming the click event in Chrome, which apparently doesn't bubble up to the parent <button>?
This is to prevent them from consuming the click event in Chrome, which apparently doesn't bubble up to the parent <button>?
And with a proper |
@karlcow nah, turns out that wasn't the right issue. Just a pointer-events thing. (But feel free to file an issue/write a patch to add a |
This is to prevent them from consuming the click event in Chrome, which apparently doesn't bubble up to the parent <button>?
While troubleshooting one of the broken automated functional tests (authenticated search, "Search Works"), I'm seeing an unresponsive search button.
(update this is a Chrome issue only, works on Firefox); tested manually with Chrome50 and with
Chromedriver v2.22 for OS X with the intern tests
Context: this issue was discovered while adding Chrome testing support to intern.js (see issue #980)
To reproduce:
I'm not sure if this is related to issue #1023.
These are a few of the files I looked at to see what may be the cause:
for the files under /models, I couldn't easily detect what might be wrong. but it seemed like one of those triggers was getting called for the successful keyword search (using Return instead of the search button).
also I don't know if this is useful info but after a successful keyword search (clicking Return after entering terms)... I also then tried clicking the search icon even though this is not a usual use case. The result was a console error like:
although if I manually create a url like "http://localhost:5000/api/issues/search?q=vladvlad", then I seem to get the expected JSON results for the record in search. hope this helps and let me know if I should do anything else. troubleshooting search might be a little over my head at this moment.
The text was updated successfully, but these errors were encountered: