quoad
Version:
Serenity/JS: Next generation acceptance testing library for modern web applications.
21 lines (20 loc) • 671 B
HTML
<html lang="en">
<body>
<form>
<fieldset name='options'>
<legend>Working with single option</legend>
<label for='single-option-select'>
Country
<select id='single-option-select'>
<option value='UK'>United Kingdom</option>
<option value='PL'>Poland</option>
<option value='DE'>Germany</option>
<option value='FR'>France</option>
</select>
</label>
</fieldset>
<p id='country-of-interest-code'>PL</p>
<p id='country-of-interest-name'>Poland</p>
</form>
</body>
</html>