Wildcard

Hi

How can I set a selector with the wildcard in it? Is it possible?

@9e389f79ff1549b677ac,

To create a dynamic selector, you need to find a dynamic/variable value in your stable selector.

Steps:

  1. Find a stable static selector that works for a particular element.
  2. Replace the dynamic/variable value in the selector with a variable or use wild cards like * or ?.

Eg: Title=“ACME Systems” and
Title=“ACME Site”

Then use wild cards to make it as dynamic selector like below:

Title=“ACME*”

1 Like

Hi,

You can check the online documentation about selectors with wildcards: Selectors with Wildcards

Regards
Silviu

Hi,

  • Asterisk (*) – replaces zero or more characters
  • Question mark (?) – replaces a single character

Thanks