Let's say I have an input
in a form (looks like a button and interacts like a button) which generates some data (well, the server generates the data based on the form parameters, but for the user, the button does it :) )based on the parameters in the form.
When I use click()
, the whole process hangs (it actually freezes, no exceptions or errors).
From the Selenium website:
// Now submit the form. WebDriver will find the form for us from the element
element.submit();
So WebDriver has a submit()
method. Is there any difference, logic wise, between using a click()
on a button or submit()
?
Also, correct me if I'm wrong, but I believe that submit will wait for a new page to load, whereas click will immediately continue executing code
Neither
submit()
norclick()
is good enough. However, it works fine if you follow it with an ENTER key:Tested on Mac 10.11, python 2.7.9, Selenium 2.53.5. This runs in parallel, meaning returns after entering the ENTER key, doesn't wait for page to load.
submit()
method can be used to click on the button present in the form and Type attribute should be "submit".click()
method is used to click on the button in the webpage.Correct me if i am wrong.
I was a great fan of
submit()
but not anymore.In the web page that I test, I enter username and password and click Login. When I invoked
usernametextbox.submit()
, password textbox is cleared (becomes empty) and login keeps failing.After breaking my head for sometime, when I replaced
usernametextbox.submit()
withloginbutton.click()
, it worked like a magic.The
submit()
function is there to make life easier. You can use it on any element inside of form tags to submit that form.You can also search for the submit button and use
click()
.So the only difference is
click()
has to be done on the submit button andsubmit()
can be done on any form element.It's up to you.
http://docs.seleniumhq.org/docs/03_webdriver.jsp#user-input-filling-in-forms
.Click() - Perform only click operation as like mouse click.
.Submit() - Perform Enter operation as like keyboard Enter event.
For Example. Consider a login page where it contains username and password and submit button.
On filling password if we want to login without clicking login button. we need to user .submit button on password where .click() operation does not work.[to login into application]
Brif.