Loop aninhado no RobotFramework

Eu preciso criar um loop aninhado na estrutura do robô. Você pode, por favor, me ajudar?

${contents}=    Get File    ${file path}
 @{lines}=    Split to lines    ${contents}
 ${matched elements}=    Get Webelements    ${LABEL PORTAIL XPATH }
 : FOR    ${element}    IN    @{matched elements}
 \    ${text}=    Get Text    ${element}
 \    : FOR    ${line}    IN    @{lines}
 \    Run Keyword If    '${text}' == '${line}'    Log    '${text} matched'

Eu preciso ter um loop aninhado que compare todos os${text} com todo o@{lines} no arquivo

Desde já, obrigado

questionAnswers(3)

yourAnswerToTheQuestion