Here's my script.
click at zoom in
${beforezoom} = returnZoom1
Sleep2
And user keyword implementation for this is:
public static long returnZoom1() {
//doing something
return beforezoom;
}
I am getting this error:
No keyword with name '${beforezoom} = returnZoom1' found.
Can you tell me where I am doing wrong ?
--
You received this message because you are subscribed to the Google Groups "robotframework-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to robotframework-u...@googlegroups.com.
To post to this group, send email to robotframe...@googlegroups.com.
Visit this group at https://groups.google.com/group/robotframework-users.
For more options, visit https://groups.google.com/d/optout.
You should have minimum of three spaces between = and returnZoom1Error indicates RF is treating ${beforezoom} = returnZoom1 as a single KW whereas returnZoom1is your keyword./Bharath
On 15 Aug 2016, at 16:32, Neel Desai <neelde...@gmail.com> wrote:
I have almost same situation just like Andrew Palmer. though I am getting error.Here's my script.
click at zoom in
${beforezoom} = returnZoom1
Sleep2
And user keyword implementation for this is:
public static long returnZoom1() {
//doing something
return beforezoom;
}I am getting this error:
No keyword with name '${beforezoom} = returnZoom1' found.Can you tell me where I am doing wrong ?
--
You received this message because you are subscribed to the Google Groups "robotframework-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to robotframework-users+unsub...@googlegroups.com.
${beforezoom}= returnZoom1
To unsubscribe from this group and stop receiving emails from it, send an email to robotframework-u...@googlegroups.com.
You should have minimum of three spaces between = and returnZoom1Error indicates RF is treating ${beforezoom} = returnZoom1 as a single KW whereas returnZoom1is your keyword./Bharath
On 15 Aug 2016, at 16:32, Neel Desai <neelde...@gmail.com> wrote:
I have almost same situation just like Andrew Palmer. though I am getting error.Here's my script.
click at zoom in
${beforezoom} = returnZoom1
Sleep2
And user keyword implementation for this is:
public static long returnZoom1() {
//doing something
return beforezoom;
}I am getting this error:
No keyword with name '${beforezoom} = returnZoom1' found.Can you tell me where I am doing wrong ?
--
You received this message because you are subscribed to the Google Groups "robotframework-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to robotframework-users+unsub...@googlegroups.com.
Ugh
If you are using space separated format, there must be two or more spaces after the = character.
-Tatu
Send from my mobile
--
You received this message because you are subscribed to the Google Groups "robotframework-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to robotframework-users+unsub...@googlegroups.com.
To post to this group, send email to robotframework-users@googlegroups.com.