First question here.
Starting my journey on Selenium-Py, first assignment is to dissect a page with over 110.000 source code characters.
I need to find an element that's nested in 8 HTML tags which goes like:
<a href="#Menu" class="item item" onclick="JQueryModule('DBSearch', 'Send'); "> Search <\a>
Tried many ways to find the element, no matter how hard. Found many other items in the same exact page with things like:
elm = driver.find_element(By.XPATH, "//i[@onclick='openNav()']")
elm = driver.find_element(By.XPATH, "//div[@class='item active']/a[1]")
For some reason the same doesn't work here.
Any help?