Hi I am trying to click on a button which has the following html structure that I found from chrome inspect.
<div class="col-md-9 col-sm-8 col-xs-12">
<button type="submit" tabindex="3" data-ng-click="login()" class="btn btn-default" data-ng-disabled="loginForm.$invalid" data-ng-class="{ 'gray': loginForm.$invalid }">Login</button>
</div>
I am not sure what to find the element by. ID, Name, XPath, etc.