We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
What I need is a do-while loop. So that I could reduce the number of required commands in my scripts yet. Would you still implement this?
Here's what I would like to use: Currently with while: | storeElementPresent | //div[contains(@Class, 'error')] | key_exists | while | ${key_exists}==true | | createRandomString | 6 | project_key | type | id=key | ${project_key} | clickAndWait | id=submit | storeElementPresent | //div[contains(@Class, 'error')] | key_exists | endWhile |
Desired and shorter with do-while: | do | | | createRandomString | 6 | project_key | type | id=key | ${project_key} | clickAndWait | id=submit | | storeElementPresent | //div[contains(@Class, 'error')] | key_exists | whileDo | ${key_exists}==true
Source: http://refactoror.wikia.com/wiki/Selblocks_Reference
The text was updated successfully, but these errors were encountered:
Loop repeat...until. XPI
b03702d
No branches or pull requests
What I need is a do-while loop. So that I could reduce the number of required commands in my scripts yet. Would you still implement this?
Here's what I would like to use: Currently with while:
| storeElementPresent | //div[contains(@Class, 'error')] | key_exists
| while | ${key_exists}==true |
| createRandomString | 6 | project_key
| type | id=key | ${project_key}
| clickAndWait | id=submit
| storeElementPresent | //div[contains(@Class, 'error')] | key_exists
| endWhile |
Desired and shorter with do-while:
| do | |
| createRandomString | 6 | project_key
| type | id=key | ${project_key}
| clickAndWait | id=submit |
| storeElementPresent | //div[contains(@Class, 'error')] | key_exists
| whileDo | ${key_exists}==true
Source: http://refactoror.wikia.com/wiki/Selblocks_Reference
The text was updated successfully, but these errors were encountered: