← Back to team overview

sikuli-driver team mailing list archive

Re: [Question #220471]: Sikuli:Issue while selecting Dropdown value with text

 

Question #220471 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/220471

    Status: Open => Answered

RaiMan proposed the following answer:
The text recognition is weak in the current version (see bug 710586).

So you have to live with the odds and find out, what works and what does
not.

There is no limit on useable text length, but because of the odds, the
longer the text, the higher the risk of failure.

So it is a good workaround, to use as search text that unique part of a
longer text that is is found.

--BTW-- reg=header.below(150).left(5).right(1000);
your intention might be, to include the area left(5), but this is not the case, because the right(1000) always starts at header.x, no matter, what n you take with left(n)

to include it:
reg=header.below(150).left(5).left(1).right(1000);

-- 
You received this question notification because you are a member of
Sikuli Drivers, which is an answer contact for Sikuli.