I´m trying to enter a webside world with selenium with this code:
World_select = driver.find_element_by_link_text('USA 15')
World_select.click()
Even with this code I can´t enter it.
driver.find_element_by_partial_link_text('USA 15').click()
The terminal sends me a traceback witch I dont really understand how to fix it.
raise exception_class(message, screen, stacktrace)
selenium.common.exceptions.NoSuchElementException: Message: Unable to locate element: USA 15
Thanks for your help :)