I am trying to find this element by partial class, the HTML code is as following :
<a class="follow-button profile" href="https://twitter.com/123"
role="button" data-scribe="component:followbutton" title="Follow 123
on Twitter"><i class="ic-button-bird"></i>Follow</a>
The method I used is as following:
var element = Driver.FindElement(By.XPath("//a[contains(@class, 'follow-button profile')]"));
Any ideas what might be the reason for not being able to locate the element?