find_element_by_* commands are deprecated in selenium

This error message… DeprecationWarning: find_element_by_* commands are deprecated. Please use find_element() instead …implies that the find_element_by_* commands are deprecated in the latest Selenium Python libraries. As @AutomatedTester mentions: This DeprecationWarning was the reflection of the changes made with respect to the decision to simplify the APIs across the languages and this does that. Solution Instead … Read more