i am new in robot framework
I want to compare two number so first I have fetch two value from from UI after that
i want compare both the value so
${count1}= Set Variable ${xyz}
${count2}= Set Variable ${abc}
${Count3}= Set Variable ${$count1}+${count2}} # o/p=(“1234”)
${count4} = Replace String ${count3} ${EMPTY} ${EMPTY}
${count5} = Convert to string ${count4}
${count6}= Get Text ${loc_count} # o/p= data (1234)
${Count7} = Remove String ${login} data
${Count8} = Convert to string ${count7}
Log To Console ${count7}
Should Be Equal ${count5} ${count8}
so in console I have get (1234) != (1234)
I dont know why these happen instead of that I have also try for convert to string i have convert to number but that time it showed 1234 can not convert into floating point number :value error could nt convert string to float code if i try to convert the string to number ${count3} = Convert To Number ${_count2