Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.6k views
in Technique[技术] by (71.8m points)

robotframework - How to create a list of tuples without each pair being converted to string in Robot Framework

I'm trying to create a list of tuples for further elaborations in RF, but only manage to have a list of strings using the Create List keyword:

*** Test cases ***
Tuple list test
    @{tuples_list}=     Create List             ('1','one')     ('2','two')     ('3','three')
    Log     ${tuples_list}

This way each tuple is a string, as it looks in the log:

["('1','one')", "('2','two')", "('3','three')"]

Is it possibile to create a list of tuples without each pair being converted to string?

question from:https://stackoverflow.com/questions/65922892/how-to-create-a-list-of-tuples-without-each-pair-being-converted-to-string-in-ro

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

You can use robot's new (as of 3.2) inline python evaluation feature:

@{tuples_list}=  Set variable  ${{ [('1', 'one'), ('2', 'two'), ('3', 'three')] }}

-or-

@{foo}=  Create list
...  ${{ ('1', 'one') }}
...  ${{ ('2', 'two') }}
...  ${{ ('3', 'three') }}

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
...