When I launch ChromeDriver or IEDriver and click the submit button (manually and automatically), it does not send the inputs. It works outside of webdriver though, I can click the submit button and send the inputs but in webdriver, it doesn't seem do anything. Is this something wrong with webdriver?
Note: The selenium version is the latest 2.47.0 along with Chrome and Chromedriver. I can't provide the link to the webpage since its a private server. We're using ExtJS 4 and the XPATH that I used is //span[text()='Submit All']. Here is the code for the button
<span id="button-1429-btnInnerEl"
class="x-btn-inner x-btn-inner-center"
unselectable="on">Submit All</span>
unselectablewhich makes the element for Selenium. Try identifiing it via counting the element and not via directly accessing it.