So, here's the problem. I've got my code setup essentially to copy/paste some data I've got from excel into a website's textbox. However, I'm at the point where I simply want to code pressing the submit button. However, the submit button stays grey'ed out unless I manually write something into the text-box or manually paste something in. My code actually enters in the data in the text-box, but the submit button still remains grey'ed out and so I can't click it.
Here's the HTML code before and after it has had something written into the text-box resulting in the submit button being either clickable or non-clickable.
<div class="form-group has-error">
<div class="form-group">
Here's the full html code for the button:
<button disabled="" class="pull-right report-module-query-list-execute-button btn btn-sm btn-default" type="button"><span>Print</span></button>
This part of the html code is for the text box, but it's this code that changes in order to enable the button.
<div class="form-group has-error">
<label class="col-sm-4 col-sm-offset-1 control-label" for="TaskStateHistoryPivot_1"><span>Search data in</span></label>
<div class="col-sm-7">
<div class="col-sm-12">
<textarea class="report-module-query-execution-freeform-area" rows="5"></textarea></div></div></div>
Any ideas?