I have a dynamic form that changes based on the results of what is selected in certain dropdowns. The submit button is also set to be disabled until there is at least one textbox with data set in it.
When I'm testing this manually, everything seems to be working ok. The disabled submit button becomes enabled when the textfields are populated.
However, when I'm testing this with Java Selenium, the submit button seems to never trigger unless I manually click the screen a few times while selenium is filling in the text fields.
What is causing this, and what can I do to make this fully automated? I tried telling selenium to click on another textfield after it is done filling in the data, but that didn't seem to work.