Selenium Java - Page Object Model
Identify the error in this Page Object method and how to fix it:
public void clickLogin() {
WebElement loginBtn = driver.findElement(By.id);
loginBtn.click();
}