Selenium Java - Page Object Model
Identify the error in the following PageFactory initialization code:
public class HomePage {
@FindBy(name = "searchBox")
WebElement searchInput;
public HomePage(WebDriver driver) {
initElements(driver, this);
}
}