I am new to selenium webdriver with python.This is my first script
I am trying to select value "300-500" from dropdown but getting error "elenium.common.exceptions.NoSuchElementException: Message: no such element: Unable to locate element: {"method":"xpath","selector":"//*[@class="ng-dropdown-panel ng-select-bottom"]//div[3]"}"
I first clicked on dropdown so it will show list "
browser.find_element(By.NAME, "organization").click()
Then i write this to click on value "
time.sleep(1)
browser.find_element(By.XPATH,'//*[@class="ng-dropdown-panel ng-select-bottom"]//div[3]').click()
You can try the below solution.
OR