← Back to team overview

sikuli-driver team mailing list archive

Re: [Question #676023]: Scroll down drop-down menu and select country

 

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

    Status: Open => Solved

monicar confirmed that the question is solved:
set timeout =0 for exists() resolved my problem. Awesome work Sikuli team.
Thanks for the quick help, Masuo!

screen.click(Country_dd);
                Match header = screen.find(Country_dd);
                region = header.below(150).left(5).left(1).right(1000);
                do {
                    if (region.exists(Country,0) != null)    //
                    {
                        region.click(Country);
                        Flag = 1;
                        break;
                    } else {
                       region.type(Key.DOWN);
                    }
                } while (Flag != 1);

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