You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to robotframe...@googlegroups.com
Hi,
How can I get random UTF-8 strings from Python files to Robot Framework? Let's say I have we have Python script like this import os def generate_random_utf8_string(length=8): random_string = os.urandom(length) return random_string
And test suite like this *** Settings *** Library String Library random_utf8_string