"Fossies" - the Fresh Open Source Software Archive

Member "selenium-selenium-4.8.1/common/src/web/rc/tests/html/test_reload_onchange_page.html" (17 Feb 2023, 1369 Bytes) of package /linux/www/selenium-selenium-4.8.1.tar.gz:


The requested HTML page contains a <FORM> tag that is unusable on "Fossies" in "automatic" (rendered) mode so that page is shown as HTML source code syntax highlighting (style: standard) with prefixed line numbers. Alternatively you can here view or download the uninterpreted source code file.

    1 <html>
    2 <!--
    3 Copyright 2011 Software Freedom Conservancy
    4 
    5  Licensed under the Apache License, Version 2.0 (the "License");
    6  you may not use this file except in compliance with the License.
    7  You may obtain a copy of the License at
    8 
    9      http://www.apache.org/licenses/LICENSE-2.0
   10 
   11  Unless required by applicable law or agreed to in writing, software
   12  distributed under the License is distributed on an "AS IS" BASIS,
   13  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   14  See the License for the specific language governing permissions and
   15  limitations under the License.
   16 -->
   17 <head>
   18 <META HTTP-EQUIV="Content-Type" CONTENT="text/html">
   19 <title>Reload Page</title>
   20 <script type="text/javascript">
   21 </script>
   22 </head>
   23 <body>
   24 <img style="width: 644px; height: 41px;" alt="banner" src="banner.gif"><br>
   25 Selecting an option or changing text causes page to reload.
   26 <a id="theLink" href="./test_page.slow.html">Click here</a>
   27 <form action="./test_page.slow.html">
   28 <select name="theSelect" id="theSelect" onchange="this.form.submit();"><option value="">Empty Option</option><option value="option1">First Option</option><option value="option2">Second Option</option></select>
   29 <input name="theTextbox" id="theTextbox" onblur="this.form.submit();" value="initialValue"/>
   30 <input type="submit" name="theSubmit" id="theSubmit" value="submit"/>
   31 </form>
   32 </body>
   33 </html>