0 votes
in Selenium by
How can you submit a form using Selenium?

1 Answer

0 votes
by
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();

Related questions

0 votes
asked Jun 9, 2022 in JavaScript by sharadyadav1986
0 votes
asked Oct 14, 2020 in Selenium by rahuljain1
...