MarketSquare / MarketSquare/robotframework-SikuliLibrary
Wait For Image - ignore @notWantedImage
Nobody has claimed this yet.
- Dominant language
- Java
- Stars
- 163
- Forks
- 60
- PR merge metrics
- No merged PRs in 30d
Description
Using the keyword "Wait For Image" doesn't achieve what is it supposed to do. It ignores the image defined in @notWantedImage
made the same Keyword using exist and that works - doesnt have timeout :-(
`
Image Not Visible
[Arguments] ${yesImage} ${noImage} ${timeout}
Sleep ${timeout}
${isExist} = Exists ${yesImage}
${isNotExist} = Exists ${noImage}
Should Be True ${isExist}
Should Not Be True ${isNotExist}
`
Using robotframework-SikuliLibrary 1.0.8
Contributor guide
No contributing guide indexed for this repository
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
Start by reproducing the issue with robotframework-SikuliLibrary 1.0.8 using the `Wait For Image` keyword and compare it with the reported `Exists` implementation. Trace how `@notWantedImage` and the timeout are handled; done means the unwanted image is respected and the wait behavior matches the keyword's intended result.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- java
- Domain
- testing-qa
- Issue type
- Bug
- Difficulty
- 3/5
- Estimated time
- 1-2 days
- Activity status
- Stale
- Clarity
- Mostly clear
- Newbie friendliness
- 35/100