Non static link

Hi! I’m having issues with attatch browser activity, 'cause the link I’m trying to acess is always changing the end! How can I resolve that?

Somethimes ends with 10888, others 08056…

2 Likes

Hi @Giulia_G

Did you try to edit the selector of the link ?

cheers :smiley:

Happy learning :smiley:

2 Likes

no worries
along the selector the attribute that has this value 10888, 08056, replace them with wildcard like this
aaname = ‘*’
(i have mentioned aaname, it can be any attribute in your selector)

Cheers @Giulia_G

Hi @Giulia_G,

Place a * symbol after what changes for example:
google.com/Giulia
google.com/*
With the * you will make your selector dynamic. and google.com/* selector will be able to detect your element even if it changes to google.com/rene or anything else.

2 Likes

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.