Selenium cannot find the element "Log in". I looked through the other stackoverflow questions regarding this and didn't seem to completely resolve.
// C#
IWebElement submit = driver.FindElement(By.Name("Log in"));
submit.Click();
// html
<div class="btn-group pull-right">
<button class="btn btn-success shadow" type="submit">Log in</button>
</div>