← Back to team overview

sikuli-driver team mailing list archive

[Question #282135]: Typing fraction Value

 

New question #282135 on Sikuli:
https://answers.launchpad.net/sikuli/+question/282135

I want to type the float value 0.0000001 in textbox.
If i use the following code :

value = 0.0000001
type(str(value))

I am getting the output as 1e-07
I want value to be typed as 0.0000001

Same result by trying in following ways too
type(str(float(value)))
paste(str(value))
paste(str(float(value)))

-- 
You received this question notification because your team Sikuli Drivers
is an answer contact for Sikuli.