I am trying to locate an element, which is a textbox that contains hint text:
<textarea placeholder="What's going on?"><textarea>
Here's what I have tried, which is not working.
@FindBy(xpath="//textarea[@placeholder='What\'s going on?']")
public WebElement inputBox;