driver.get("https://urlk/my-account/");
WebElement password = driver.findElement(By.id("password"));
driver.findElement(RelativeLocator.with(By.tagName("input")).above("password")).sendKeys("hi");
.above in the code is highlighted in red and shows the following when I hover: the method above(WebElement) in the type relativelocator.relativeby is not applicable for the argument (string)
I am working on selenium locator tutorial.