Login
Remember
Register
Ask a Question
How can you submit a form using Selenium?
0
votes
asked
Oct 15, 2020
in
Selenium
by
rahuljain1
How can you submit a form using Selenium?
#submit-a-form
#form-submission-selenium
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Oct 15, 2020
by
SakshiSharma
How can you submit a form using Selenium?
The following lines of code will let you submit a form using Selenium:
WebElement el = driver.findElement(By.id(“ElementID”));
el.submit();
...