My dropdown & check box not working correct

**12. Inside the form element, I can select an option from a dropdown that has corresponding id=“dropdown”.’
Select should contain at least 2 selectable options : expected 0 to be at least 2
AssertionError: Select should contain at least 2 selectable options
**

 <select id="dropdown-menu">
    <option id="current-role" value"">--Select current role--</option>
    <option id="student" value="student">Student</option>
   <option id="full time job" value="full time job">Full Time Job<Full Time Job</option>
   <option id="perfer not to say" value="perfer not to say">Perfer not to say</option>
   <option id="other" valve="other">Other</option>
    </select>
**14. Inside the form element, I can select several fields from a series of checkboxes, each of which must have a value attribute.
All your checkboxes must have a value attribute : expected 11 to equal 0
AssertionError: All your checkboxes must have a value attribute
**
<div>
     <input type="checkbox" id="front-end Projects" name="front end Projects" checked>  
  <label for="front end Projects">Front-end Projects</label>
</div>
        
 <div>
     <input type="checkbox" id="Back-end Project" name="Back-end Projects">  
  <label for="back-end project">Back-end Projects</label>
</div>
        
  <div>
     <input type="checkbox" id="data visualization" name="data visualization">  
  <label for="data visualization">Data visualization</label>
</div>
 
  <div>
     <input type="checkbox" id="challenges" name="challenges" >  
  <label for="challenges">Challenges</label>
</div>
        
 <div>
     <input type="checkbox" id="open source Community" name="open source Community" checked >  
  <label for="open source Community">Open source Community</label>
</div>        

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.82 Safari/537.36 Edg/89.0.774.50.

Challenge: Build a Survey Form

Link to the challenge:

You select Id is supposed to be “dropdown”, you currently have it as “dropdown-menu”.
On a side note, you also misspelled “value” as “valve” on your 5th option.

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