Selenium is a Web Browser automation tool, which basically means you can use it to surf web programmatically on real web browsers. But mostly selenium is used for testing web applications. It has packages for most programming languages.
The major challenge in executing a Selenium script would be finding the element for the page, there are many in build functions which are used the items are listed below:
- find_element_by_id
- find_element_by_name
- find_element_by_tag_name
- find_element_by_xpath
- find_element_by_link_text
- find_element_by_partial_link_text
- find_element_by_class_name
- find_element_by_css_selector
Comments
Post a Comment