Skip to content
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

Multiple Dropdowns on Page #253

Closed
JustinJohnWilliams opened this issue Mar 26, 2016 · 3 comments
Closed

Multiple Dropdowns on Page #253

JustinJohnWilliams opened this issue Mar 26, 2016 · 3 comments

Comments

@JustinJohnWilliams
Copy link

I think 47d8cad may have broken our test suite on pages that have multiple drop downs.

HTML for repro:

<!DOCTYPE html>
<html>
<body>

<select id="test-select">
    <option value="r">Red</option>
    <option value="g">Green</option>
    <option value="b">Blue</option>
</select>
<br />
<select id="test-select2">
    <option value="r">Red</option>
    <option value="g">Green</option>
    <option value="b">Blue</option>
</select>

</body>
</html>

Canopy Tests for Repro:

"multiple drop downs" &&& fun _ ->
    url "testpage.html"
    "#test-select" << "g"
    "#test-select2" << "b"
    "#test-select" == "Green"
    "#test-select2" == "Blue"

BUG: when selecting "b" on the second dropdown list, it's actually changing the first dropdown list

@lefthandedgoat
Copy link
Owner

Thanks will get it fixed this weekend

@lefthandedgoat
Copy link
Owner

Sorry about that!

You can find the fixed version of canopy here https://www.nuget.org/packages/canopy/0.9.50

Thanks for the bug report and repo steps!!

@JustinJohnWilliams
Copy link
Author

Thank you for the quick update! verified on our end.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants