Use of * in attach browser selector

@denis.christian “*” is wildcard character that replaces the text. It is being used when some attributes are prone to change frequently.

Lets say, the title of the browser may change for each webpage. So to replace the title, we can use the wildcard characters.

There are 2 wildcard characters as below,

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

More on below URL :

3 Likes