I got the same problem, when i'm trying to open a link in de mail of my mailbox.
Open Bevestigingsmail In Mailbox
[Arguments] ${SENDER} ${SUBJECT}
Log ${SENDER}
Log ${EMAIL}
Log ${SUBJECT}
${LATEST}= Wait for Mail fromEmail=${SENDER} timeout=10
#check het laatste emailtje van afzender ${SENDER}, wacht maximaal 10 seconden, anders wordt een timeout gegeven
${parts}= Walk Multipart Email ${LATEST}
@{fields}= Get Multipart Field Names
${from}= Get Multipart Field From
${to}= Get Multipart Field To
${SUBJECT}= Get Multipart Field Subject
${Date}= Get Multipart Field Date
${payload}= Get Multipart Payload decode=True
#De body van de email wordt in ${payload} gezet
@{WORDS}= Split String ${payload}
#${payload} wordt omgezet naar woorden in de array @{WORDS}
${LINK}= Get From list ${WORDS} 24
Click Link ${LINK}
My question is how can i rewrite the BOLD part of my script without getting the next error:
When i look at the error, i can see a part of my link is missing, this part is changing everythime so i can not put the link hard coded in a varible.
I try to use Kevins example but it doesn't work for me or i'm doing something wrong.