Help with my survey form pls. I'm on 15/17

hello everyone
im currently building my survey but now im stuck in 15/17 and im not sure about what i’m doing wrong.
can someone please help me out on this?

here are the user stories:

here is my survey:

thanks :heart::heart::heart:

If you click on the red button after running the tests you will see the error messages and descriptions for why they are considered errors. Let’s look at the first one:

“8. If I enter non-numbers in the number input, I will see an HTML5 validation error.”

Number field should be HTML5 validated : expected 'tel' to equal 'number'

This is telling you that the test expects the input field that currently has type=tel to be type=number. As soon as I fixed that then the error went away. I’ll leave you to fix the remaining one.

You’re probably thinking, “Why shouldn’t I use the ‘tel’ input type since the input is asking for a telephone number?” Well, you probably should, but the tests are looking for specific things and in this case you need to make the change to appease the test.

1 Like

thank you! i didnt know i could see the error descriptions haha.
i solved the radio buttons problems as well now :grinning:
thank you so much!!

1 Like

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.