-
Notifications
You must be signed in to change notification settings - Fork 4
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
Add range input module #551
Comments
The range input is very similar to the number input. It might be a worth creating a |
Yeah, I agree. As far as I can tell it will be pretty much the same from Geb's point of view other than the different input type name. |
I again had to implement the tests as real browser tests. It seems that HtmlUnit is generally bad at supporting fancy input types. We should keep an eye on these tests. Maybe it is also worth thinking about a different test setup, that does not require Sauce Labs or similar external services. In my geb-testing-workshop I'm using Docker on Travis to fire up a local Selenium container. Maybe that's an idea to improve local development on Geb itself. |
The thing is that SauceLabs is there because Geb is tested with a wider matrix of browsers (including IE and Safari) than what is available in a docker container. So SauceLabs and BrowserStack setup is there to stay and I don't feel like adding another mechanism to do the same thing but locally especially given the small set of tests that are annotated with |
Thinking about it a bit more, we could probably replace the tasks running against chrome and FF on Linux in SauceLabs/BrowserStack to run locally. We already have these browsers installed in the docker image used on CI anyway. Would you care to create an issue for this? |
Done. See #555. Feel free to edit. |
Geb should have a module for range inputs. See specification in HTML 5.2 or documentation at W3Schools.
The text was updated successfully, but these errors were encountered: