Skip to content
Advertisement

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 :

JavaScript

Is there anyway I can locate this element only by using coption?

Advertisement

Answer

To find the element which you have located with:

JavaScript

To locate this element only by using coption you can use can use either of the following Locator Strategies:

  • Using XPATH and starts-with():

    JavaScript
  • Using XPATH and contains():

    JavaScript
  • Using CSS_SELECTOR and ^ (wildcard of starts-with):

    JavaScript
  • Using CSS_SELECTOR and * (wildcard of contains):

    JavaScript

Reference

You can find a detailed discussion on dynamic CssSelectors in:

Advertisement