Line 59: | Line 59: | ||
</syntaxhighlight> | </syntaxhighlight> | ||
− | 3. In the form with id="GET1-2" click on Dewey | + | 3. In the form with id="GET1-2" click on '''Dewey''' |
4. Click the submit button with value "'''GET1-2 test'''". | 4. Click the submit button with value "'''GET1-2 test'''". | ||
Line 80: | Line 80: | ||
7.3 '''Huey''' is automatically selected | 7.3 '''Huey''' is automatically selected | ||
+ | |||
+ | == GET1-3: GET Forms:Checkbox == | ||
+ | 1. Create page '''Selenium/GET1-3''' | ||
+ | |||
+ | 2. Add following content and save | ||
+ | |||
+ | <syntaxhighlight lang="html"> | ||
+ | <form action="get" id="GET1-3"> | ||
+ | <!-- GET1-3 Selenium test--> | ||
+ | <input type="checkbox" name="Role[]" value="organizer" id="organizer-checkbox" /> | ||
+ | <label for="organizer-checkbox">Organizer</label><br> | ||
+ | <input type="checkbox" name="Role[]" value="participant" id="participant-checkbox" /> | ||
+ | <label for="participant-checkbox">Participant</label><br> | ||
+ | <input type="checkbox" name="Role[]" value="contact" id="contact-checkbox" /> | ||
+ | <label for="contact-checkbox">Contact</label><br> | ||
+ | <input type="checkbox" name="Role[]" value="user" id="user-checkbox" /> | ||
+ | <label for="user-checkbox">User</label><br> | ||
+ | <input type="submit" value="GET1-3 test" /> | ||
+ | </form> | ||
+ | |||
+ | </syntaxhighlight> | ||
+ | |||
+ | 3. In the form with id="GET1-3" click on '''Participant''' | ||
+ | |||
+ | 4. Click the submit button with value "'''GET1-3 test'''". | ||
+ | |||
+ | 5. Verify the result: | ||
+ | |||
+ | 5.1 Same page is reloaded | ||
+ | |||
+ | 5.2 Url will now have an argument and value of : '''Role=participant''' | ||
+ | |||
+ | 5.2 '''Participant''' is automatically checked | ||
+ | |||
+ | 6. Change the argument in the url '''Role=participant''' to '''Role=contact''' and press enter. | ||
+ | |||
+ | 7. Verify the result: | ||
+ | |||
+ | 7.1 Same page is reloaded | ||
+ | |||
+ | 7.2 url will now have an argument and value of : '''Role=contact''' | ||
+ | |||
+ | 7.3 '''Contact''' is automatically checked. Other checkboxes are unchecked. | ||
+ | |||
+ | 8. Reload the page Selenium/GET1-3 without any arguments and make sure not checkboxes are selected. | ||
+ | |||
+ | 9. In the form with id="GET1-3" click on/check '''Participant''' and '''User''' | ||
+ | |||
+ | 10. Click the submit button with value "'''GET1-3 test'''". | ||
+ | |||
+ | 11 Verify the result: | ||
+ | |||
+ | 11.1 Same page is reloaded | ||
+ | |||
+ | 11.2 Url will now have an argument and value of : '''Role=participant,user''' | ||
+ | |||
+ | 11.2 '''Participant''' AND '''Contact''' are automatically selected |
Revision as of 22:06, 15 May 2023
Prerequisites
User | Sysop/Admin or in a user group defined in the setting that allows for creating FlexForms on pages |
---|
GET1-1: GET Forms:Text
1. Create page Selenium/GET1-1
2. Add following content and save
<form action="get" id="GET1-1">
<!-- GET1-1 Selenium test-->
<input type="text" name="test" />
<input type="submit" value="GET1-1 test" />
</form>
3. In the form with id="GET1-1" type "MyTest" in the text field with name "test".
4. Click the submit button with value "GET1-1 test".
5. Verify the result:
5.1 Same page is reloaded
5.2 url will now have an argument and value of : test=MyTest
5.3 the text field with name "test" will now have the value of "MyTest"
6. Change the argument in the url test=MyTest to test=Mytest2 and press enter.
7. Verify the result:
7.1 Same page is reloaded
7.2 url will now have an argument and value of : test=MyTest2
7.3 the text field with name "test" will now have the value of "MyTest2"
GET1-2: GET Forms:Radio
1. Create page Selenium/GET1-2
2. Add following content and save
<form action="get" id="GET1-2">
<!-- GET1-2 Selenium test-->
<input type="radio" id="huey" name="drone" value="huey" />
<label for="huey">Huey</label><br>
<input type="radio" id="dewey" name="drone" value="dewey" />
<label for="dewey">Dewey</label><br>
<input type="radio" id="louie" name="drone" value="louie" />
<label for="louie">Louie</label><br>
<input type="submit" value="GET1-2 test" />
</form>
3. In the form with id="GET1-2" click on Dewey
4. Click the submit button with value "GET1-2 test".
5. Verify the result:
5.1 Same page is reloaded
5.2 Url will now have an argument and value of : drone=dewey
5.2 Dewey is automatically selected
6. Change the argument in the url drone=dewey to drone=huey and press enter.
7. Verify the result:
7.1 Same page is reloaded
7.2 url will now have an argument and value of : drone=huey
7.3 Huey is automatically selected
GET1-3: GET Forms:Checkbox
1. Create page Selenium/GET1-3
2. Add following content and save
<form action="get" id="GET1-3">
<!-- GET1-3 Selenium test-->
<input type="checkbox" name="Role[]" value="organizer" id="organizer-checkbox" />
<label for="organizer-checkbox">Organizer</label><br>
<input type="checkbox" name="Role[]" value="participant" id="participant-checkbox" />
<label for="participant-checkbox">Participant</label><br>
<input type="checkbox" name="Role[]" value="contact" id="contact-checkbox" />
<label for="contact-checkbox">Contact</label><br>
<input type="checkbox" name="Role[]" value="user" id="user-checkbox" />
<label for="user-checkbox">User</label><br>
<input type="submit" value="GET1-3 test" />
</form>
3. In the form with id="GET1-3" click on Participant
4. Click the submit button with value "GET1-3 test".
5. Verify the result:
5.1 Same page is reloaded
5.2 Url will now have an argument and value of : Role=participant
5.2 Participant is automatically checked
6. Change the argument in the url Role=participant to Role=contact and press enter.
7. Verify the result:
7.1 Same page is reloaded
7.2 url will now have an argument and value of : Role=contact
7.3 Contact is automatically checked. Other checkboxes are unchecked.
8. Reload the page Selenium/GET1-3 without any arguments and make sure not checkboxes are selected.
9. In the form with id="GET1-3" click on/check Participant and User
10. Click the submit button with value "GET1-3 test".
11 Verify the result:
11.1 Same page is reloaded
11.2 Url will now have an argument and value of : Role=participant,user
11.2 Participant AND Contact are automatically selected