How to select a country from https://www.aliexpress.com/ ship to drowdown menu using Selenium and Python
问题 On the website https://www.aliexpress.com, I need to change the country from the dropdown menu using selenium <span class="ship-to"> I can't find how I click on the country value using selenium 回答1: From the Ship to drop-down-menu to select the country as Afghanistan you have to induce WebDriverWait for the element_to_be_clickable() and you can use the following xpath based Locator Strategies: Code Block: driver.get("https://www.aliexpress.com/") WebDriverWait(driver, 20).until(EC.element_to