Checkout our demo site to practice selenium https://magento.softwaretestingboard.com/

0 like 0 dislike
3.1k views
by Contributing Tester (16 points)
retagged by
I am working on a desktop application and, I am using Sikuli. I am trying to clear text value that already contains some text.

1 Answer

0 like 0 dislike
by The go-to Tester (142 points)
Generally, you have to simulate with Sikuli, what you are doing manually (sikuli does not have any features to talk with an application directly or access GUI elements like Selenium).

something like:

click("the-GUI-text-field.png")

type("a", KeyModifier.CTRL) # select all text

type(Key.BACKSPACE) # delete selection

normally does the job.


This site is for software testing professionals, where you can ask all your questions and get answers from 1300+ masters of the profession. Click here to submit yours now!

...