I am hopping some of you have run in to a scenario like below.
Title of the page - ‘Events’
But the page also has javascript that after few minutes changes the title to ‘(x) Events’
I am unable to attach the browser, I have to use Selector.
Any ideas/suggestions on how I can tackle the ‘(x)’ portion and still identify ‘Events’ ?
1 Like
@RPA4Gov
Buddy add a wildcard * in front of Events in the selector like this
title = ‘*Event’
It would work for sure
Cheers…
Like this - title=’*Events’ ?
Yes buddy right or even entirely * much better lik this
title = ’ * ’
Cheers
Just * in title means anything. I tried and it didn’t work. I have to hook the browser some how and my only way was using the title of the browser.
Alright then we cannot use title with full of wildcard but
Even this didn’t work buddy …?
title = ‘*Events’
@RPA4Gov
1 Like
That did it @Palaniyappan Thanks!!
1 Like
Great buddy @RPA4Gov ,Close this topic with comment marked solution that could help others buddy
Cheers