How to find element by part of its id name in selenium with python
问题 I'm using selenium with python,now I want to locate an element by part of its id name,what can I do? For example,now I've already located a item by id name coption5 : sixth_item = driver.find_element_by_id("coption5") Is there anyway I can locate this element only by using coption ? 回答1: To find the element which you have located with: sixth_item = driver.find_element_by_id("coption5") To locate this element only by using coption you can use can use either of the following Locator Strategies: