How To Handling Dynamic id

Hi all
Please Help about Handling dynamic id in iframe

xpath : //*[@src = ‘https://kalcare.api.useinsider.com/api/info/frame?id=387&version=1601957141’]

id=387&version=1601957141’] is changing every time change picture
thanks:
cc : @katalon.team

Try with this: //iframe[contains(@src,‘kalcare.api.useinsider.com/api’)]
This xpath means you are searching and iframe element with src atribute that contains “kalcare.api.useinsider.com/api” value. as the last part of the value in that atribute may be dynamic you only search for the static value that remain the same and does not change. Play arround with that or with another atribute name and value.