XPath Assassin

Level 1/20: Level 1: The Basics

Target HTML
<div class="login-form">
  <h2>Login</h2>
  <input type="text" id="username" placeholder="Enter Username" />
  <input type="password" id="password" placeholder="Enter Password" />
  <button id="login-btn">Sign In</button>
</div>

Mission

Select the username input field by its ID.

>