Answers for "how to call custom function in robotframework"

0

how to call custom function in robotframework

import random, string

def getRandomEmails():
    a = ''.join(random.choice(string.ascii_lowercase + string.digits) for i in range(16))
    email = a + '@' + 'gmail.com'
    return email
Posted by: Guest on November-09-2020

Code answers related to "how to call custom function in robotframework"

Browse Popular Code Answers by Language