We can click on the buttons using click() method as illustrated
in the below example.
from selenium import webdriver
from selenium.webdriver.support.ui import Select
driver = webdriver.Firefox()
driver.maximize_window()
driver.get("http://www.amazon.in")
try:
driver.find_element_by_xpath("//*[@id='twotabsearchtextbox']").send_keys("Selenium")
driver.find_element_by_xpath("//*[@id='nav-bar-inner']").click()
driver.close()
except Exception as e:
print ("Exception occured", format(e));
finally:
driver.quit()
print ("finally")
What do you think on above selenium topic. Please provide your inputs and comments. You can write to me at reply2sagar@gmail.com
No comments:
Post a Comment