├── .gitignore ├── CHANGELOG ├── LICENSE-2.0.txt ├── README ├── README.md ├── Rakefile ├── doc ├── classes │ ├── SeleniumController.html │ ├── SeleniumHelper.html │ ├── SeleniumOnRails.html │ ├── SeleniumOnRails │ │ ├── FixtureLoader.html │ │ ├── PartialsSupport.html │ │ ├── Paths.html │ │ ├── RSelenese.html │ │ ├── Renderer.html │ │ ├── Selenese.html │ │ ├── SuiteRenderer.html │ │ ├── TestBuilder.html │ │ ├── TestBuilderAccessors.html │ │ ├── TestBuilderActions.html │ │ ├── TestBuilderUserAccessors.html │ │ └── TestBuilderUserActions.html │ └── SeleniumOnRailsConfig.html ├── files │ ├── CHANGELOG.html │ ├── README.html │ └── lib │ │ ├── controllers │ │ └── selenium_controller_rb.html │ │ ├── selenium_helper_rb.html │ │ ├── selenium_on_rails │ │ ├── acceptance_test_runner_rb.html │ │ ├── fixture_loader_rb.html │ │ ├── partials_support_rb.html │ │ ├── paths_rb.html │ │ ├── renderer_rb.html │ │ ├── rselenese_rb.html │ │ ├── selenese_rb.html │ │ ├── suite_renderer_rb.html │ │ ├── test_builder_accessors_rb.html │ │ ├── test_builder_actions_rb.html │ │ └── test_builder_rb.html │ │ ├── selenium_on_rails_config_rb.html │ │ └── selenium_on_rails_rb.html ├── fr_class_index.html ├── fr_file_index.html ├── fr_method_index.html ├── index.html └── rdoc-style.css ├── generators └── selenium │ ├── USAGE │ ├── selenium_generator.rb │ └── templates │ ├── rhtml.rhtml │ ├── rselenese.rhtml │ └── selenese.rhtml ├── init.rb ├── lib ├── controllers │ ├── selenium_controller.rb │ └── switch_environment_controller.rb ├── selenium_helper.rb ├── selenium_on_rails.rb ├── selenium_on_rails │ ├── acceptance_test_runner.rb │ ├── fixture_loader.rb │ ├── partials_support.rb │ ├── paths.rb │ ├── renderer.rb │ ├── rselenese.rb │ ├── selenese.rb │ ├── suite_renderer.rb │ ├── test_builder.rb │ ├── test_builder_accessors.rb │ ├── test_builder_actions.rb │ ├── test_builder_user_accessors.rb.example │ └── test_builder_user_actions.rb.example ├── selenium_on_rails_config.rb ├── tasks │ └── test_acceptance.rake └── views │ ├── layouts │ └── layout.rhtml │ ├── record.rhtml │ ├── selenium_helper.rb │ ├── setup.rhtml │ └── test_suite.rhtml ├── log └── default.yml ├── routes.rb ├── selenium-core ├── Blank.html ├── InjectedRemoteRunner.html ├── RemoteRunner.html ├── SeleniumLog.html ├── TestPrompt.html ├── TestRunner-splash.html ├── TestRunner.hta ├── TestRunner.html ├── domviewer │ ├── butmin.gif │ ├── butplus.gif │ ├── domviewer.css │ ├── domviewer.html │ └── selenium-domviewer.js ├── icons │ ├── all.png │ ├── continue.png │ ├── continue_disabled.png │ ├── pause.png │ ├── pause_disabled.png │ ├── selected.png │ ├── step.png │ └── step_disabled.png ├── iedoc-core.xml ├── iedoc.xml ├── lib │ ├── cssQuery │ │ ├── cssQuery-p.js │ │ └── src │ │ │ ├── cssQuery-level2.js │ │ │ ├── cssQuery-level3.js │ │ │ ├── cssQuery-standard.js │ │ │ └── cssQuery.js │ ├── prototype.js │ ├── scriptaculous │ │ ├── builder.js │ │ ├── controls.js │ │ ├── dragdrop.js │ │ ├── effects.js │ │ ├── scriptaculous.js │ │ ├── slider.js │ │ └── unittest.js │ └── snapsie.js ├── scripts │ ├── find_matching_child.js │ ├── htmlutils.js │ ├── injection.html │ ├── selenium-api.js │ ├── selenium-browserbot.js │ ├── selenium-browserdetect.js │ ├── selenium-commandhandlers.js │ ├── selenium-executionloop.js │ ├── selenium-logging.js │ ├── selenium-remoterunner.js │ ├── selenium-testrunner.js │ ├── selenium-version.js │ ├── ui-doc.html │ ├── ui-element.js │ ├── ui-map-sample.js │ ├── user-extensions.js │ ├── user-extensions.js.sample │ └── xmlextras.js ├── selenium-logo.png ├── selenium-test.css ├── selenium.css └── xpath │ ├── dom.js │ ├── javascript-xpath-0.1.11.js │ ├── util.js │ ├── xmltoken.js │ └── xpath.js ├── selenium.yml.example ├── test ├── fixtures │ ├── config.yml │ └── selenium.yml ├── paths_test.rb ├── renderer_test.rb ├── rselenese_test.rb ├── selenese_test.rb ├── selenium_controller_test.rb ├── selenium_on_rails_config_test.rb ├── selenium_support_test.rb ├── setup_test.rb ├── suite_renderer_test.rb ├── switch_environment_controller_test.rb ├── test_builder_functions_authortest.rb └── test_helper.rb └── test_data ├── .hidden.html ├── _partial.rsel ├── backup.html~ ├── empty_suite └── .gitignore ├── own_layout.html ├── partials ├── _html.html ├── _nesting.rsel ├── _rhtml.rhtml ├── _rsel.rsel ├── _sel.sel └── all_partials.rsel ├── rhtml.rhtml ├── rselenese.rsel ├── selenese.sel ├── suite_one ├── subsuite │ └── suite_one_subsuite_testcase.sel ├── suite_one_testcase1.sel └── suite_one_testcase2.sel └── suite_two └── suite_two_testcase.sel /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/CHANGELOG -------------------------------------------------------------------------------- /LICENSE-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/LICENSE-2.0.txt -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/README -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/Rakefile -------------------------------------------------------------------------------- /doc/classes/SeleniumController.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/doc/classes/SeleniumController.html -------------------------------------------------------------------------------- /doc/classes/SeleniumHelper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/doc/classes/SeleniumHelper.html -------------------------------------------------------------------------------- /doc/classes/SeleniumOnRails.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/doc/classes/SeleniumOnRails.html -------------------------------------------------------------------------------- /doc/classes/SeleniumOnRails/FixtureLoader.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/doc/classes/SeleniumOnRails/FixtureLoader.html -------------------------------------------------------------------------------- /doc/classes/SeleniumOnRails/PartialsSupport.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/doc/classes/SeleniumOnRails/PartialsSupport.html -------------------------------------------------------------------------------- /doc/classes/SeleniumOnRails/Paths.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/doc/classes/SeleniumOnRails/Paths.html -------------------------------------------------------------------------------- /doc/classes/SeleniumOnRails/RSelenese.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/doc/classes/SeleniumOnRails/RSelenese.html -------------------------------------------------------------------------------- /doc/classes/SeleniumOnRails/Renderer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/doc/classes/SeleniumOnRails/Renderer.html -------------------------------------------------------------------------------- /doc/classes/SeleniumOnRails/Selenese.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/doc/classes/SeleniumOnRails/Selenese.html -------------------------------------------------------------------------------- /doc/classes/SeleniumOnRails/SuiteRenderer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/doc/classes/SeleniumOnRails/SuiteRenderer.html -------------------------------------------------------------------------------- /doc/classes/SeleniumOnRails/TestBuilder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/doc/classes/SeleniumOnRails/TestBuilder.html -------------------------------------------------------------------------------- /doc/classes/SeleniumOnRails/TestBuilderAccessors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/doc/classes/SeleniumOnRails/TestBuilderAccessors.html -------------------------------------------------------------------------------- /doc/classes/SeleniumOnRails/TestBuilderActions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/doc/classes/SeleniumOnRails/TestBuilderActions.html -------------------------------------------------------------------------------- /doc/classes/SeleniumOnRails/TestBuilderUserAccessors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/doc/classes/SeleniumOnRails/TestBuilderUserAccessors.html -------------------------------------------------------------------------------- /doc/classes/SeleniumOnRails/TestBuilderUserActions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/doc/classes/SeleniumOnRails/TestBuilderUserActions.html -------------------------------------------------------------------------------- /doc/classes/SeleniumOnRailsConfig.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/doc/classes/SeleniumOnRailsConfig.html -------------------------------------------------------------------------------- /doc/files/CHANGELOG.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/doc/files/CHANGELOG.html -------------------------------------------------------------------------------- /doc/files/README.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/doc/files/README.html -------------------------------------------------------------------------------- /doc/files/lib/controllers/selenium_controller_rb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/doc/files/lib/controllers/selenium_controller_rb.html -------------------------------------------------------------------------------- /doc/files/lib/selenium_helper_rb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/doc/files/lib/selenium_helper_rb.html -------------------------------------------------------------------------------- /doc/files/lib/selenium_on_rails/acceptance_test_runner_rb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/doc/files/lib/selenium_on_rails/acceptance_test_runner_rb.html -------------------------------------------------------------------------------- /doc/files/lib/selenium_on_rails/fixture_loader_rb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/doc/files/lib/selenium_on_rails/fixture_loader_rb.html -------------------------------------------------------------------------------- /doc/files/lib/selenium_on_rails/partials_support_rb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/doc/files/lib/selenium_on_rails/partials_support_rb.html -------------------------------------------------------------------------------- /doc/files/lib/selenium_on_rails/paths_rb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/doc/files/lib/selenium_on_rails/paths_rb.html -------------------------------------------------------------------------------- /doc/files/lib/selenium_on_rails/renderer_rb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/doc/files/lib/selenium_on_rails/renderer_rb.html -------------------------------------------------------------------------------- /doc/files/lib/selenium_on_rails/rselenese_rb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/doc/files/lib/selenium_on_rails/rselenese_rb.html -------------------------------------------------------------------------------- /doc/files/lib/selenium_on_rails/selenese_rb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/doc/files/lib/selenium_on_rails/selenese_rb.html -------------------------------------------------------------------------------- /doc/files/lib/selenium_on_rails/suite_renderer_rb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/doc/files/lib/selenium_on_rails/suite_renderer_rb.html -------------------------------------------------------------------------------- /doc/files/lib/selenium_on_rails/test_builder_accessors_rb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/doc/files/lib/selenium_on_rails/test_builder_accessors_rb.html -------------------------------------------------------------------------------- /doc/files/lib/selenium_on_rails/test_builder_actions_rb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/doc/files/lib/selenium_on_rails/test_builder_actions_rb.html -------------------------------------------------------------------------------- /doc/files/lib/selenium_on_rails/test_builder_rb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/doc/files/lib/selenium_on_rails/test_builder_rb.html -------------------------------------------------------------------------------- /doc/files/lib/selenium_on_rails_config_rb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/doc/files/lib/selenium_on_rails_config_rb.html -------------------------------------------------------------------------------- /doc/files/lib/selenium_on_rails_rb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/doc/files/lib/selenium_on_rails_rb.html -------------------------------------------------------------------------------- /doc/fr_class_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/doc/fr_class_index.html -------------------------------------------------------------------------------- /doc/fr_file_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/doc/fr_file_index.html -------------------------------------------------------------------------------- /doc/fr_method_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/doc/fr_method_index.html -------------------------------------------------------------------------------- /doc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/doc/index.html -------------------------------------------------------------------------------- /doc/rdoc-style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/doc/rdoc-style.css -------------------------------------------------------------------------------- /generators/selenium/USAGE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/generators/selenium/USAGE -------------------------------------------------------------------------------- /generators/selenium/selenium_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/generators/selenium/selenium_generator.rb -------------------------------------------------------------------------------- /generators/selenium/templates/rhtml.rhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/generators/selenium/templates/rhtml.rhtml -------------------------------------------------------------------------------- /generators/selenium/templates/rselenese.rhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/generators/selenium/templates/rselenese.rhtml -------------------------------------------------------------------------------- /generators/selenium/templates/selenese.rhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/generators/selenium/templates/selenese.rhtml -------------------------------------------------------------------------------- /init.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/init.rb -------------------------------------------------------------------------------- /lib/controllers/selenium_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/lib/controllers/selenium_controller.rb -------------------------------------------------------------------------------- /lib/controllers/switch_environment_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/lib/controllers/switch_environment_controller.rb -------------------------------------------------------------------------------- /lib/selenium_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/lib/selenium_helper.rb -------------------------------------------------------------------------------- /lib/selenium_on_rails.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/lib/selenium_on_rails.rb -------------------------------------------------------------------------------- /lib/selenium_on_rails/acceptance_test_runner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/lib/selenium_on_rails/acceptance_test_runner.rb -------------------------------------------------------------------------------- /lib/selenium_on_rails/fixture_loader.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/lib/selenium_on_rails/fixture_loader.rb -------------------------------------------------------------------------------- /lib/selenium_on_rails/partials_support.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/lib/selenium_on_rails/partials_support.rb -------------------------------------------------------------------------------- /lib/selenium_on_rails/paths.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/lib/selenium_on_rails/paths.rb -------------------------------------------------------------------------------- /lib/selenium_on_rails/renderer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/lib/selenium_on_rails/renderer.rb -------------------------------------------------------------------------------- /lib/selenium_on_rails/rselenese.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/lib/selenium_on_rails/rselenese.rb -------------------------------------------------------------------------------- /lib/selenium_on_rails/selenese.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/lib/selenium_on_rails/selenese.rb -------------------------------------------------------------------------------- /lib/selenium_on_rails/suite_renderer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/lib/selenium_on_rails/suite_renderer.rb -------------------------------------------------------------------------------- /lib/selenium_on_rails/test_builder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/lib/selenium_on_rails/test_builder.rb -------------------------------------------------------------------------------- /lib/selenium_on_rails/test_builder_accessors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/lib/selenium_on_rails/test_builder_accessors.rb -------------------------------------------------------------------------------- /lib/selenium_on_rails/test_builder_actions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/lib/selenium_on_rails/test_builder_actions.rb -------------------------------------------------------------------------------- /lib/selenium_on_rails/test_builder_user_accessors.rb.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/lib/selenium_on_rails/test_builder_user_accessors.rb.example -------------------------------------------------------------------------------- /lib/selenium_on_rails/test_builder_user_actions.rb.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/lib/selenium_on_rails/test_builder_user_actions.rb.example -------------------------------------------------------------------------------- /lib/selenium_on_rails_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/lib/selenium_on_rails_config.rb -------------------------------------------------------------------------------- /lib/tasks/test_acceptance.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/lib/tasks/test_acceptance.rake -------------------------------------------------------------------------------- /lib/views/layouts/layout.rhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/lib/views/layouts/layout.rhtml -------------------------------------------------------------------------------- /lib/views/record.rhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/lib/views/record.rhtml -------------------------------------------------------------------------------- /lib/views/selenium_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/lib/views/selenium_helper.rb -------------------------------------------------------------------------------- /lib/views/setup.rhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/lib/views/setup.rhtml -------------------------------------------------------------------------------- /lib/views/test_suite.rhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/lib/views/test_suite.rhtml -------------------------------------------------------------------------------- /log/default.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/log/default.yml -------------------------------------------------------------------------------- /routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/routes.rb -------------------------------------------------------------------------------- /selenium-core/Blank.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/selenium-core/Blank.html -------------------------------------------------------------------------------- /selenium-core/InjectedRemoteRunner.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/selenium-core/InjectedRemoteRunner.html -------------------------------------------------------------------------------- /selenium-core/RemoteRunner.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/selenium-core/RemoteRunner.html -------------------------------------------------------------------------------- /selenium-core/SeleniumLog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/selenium-core/SeleniumLog.html -------------------------------------------------------------------------------- /selenium-core/TestPrompt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/selenium-core/TestPrompt.html -------------------------------------------------------------------------------- /selenium-core/TestRunner-splash.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/selenium-core/TestRunner-splash.html -------------------------------------------------------------------------------- /selenium-core/TestRunner.hta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/selenium-core/TestRunner.hta -------------------------------------------------------------------------------- /selenium-core/TestRunner.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/selenium-core/TestRunner.html -------------------------------------------------------------------------------- /selenium-core/domviewer/butmin.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/selenium-core/domviewer/butmin.gif -------------------------------------------------------------------------------- /selenium-core/domviewer/butplus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/selenium-core/domviewer/butplus.gif -------------------------------------------------------------------------------- /selenium-core/domviewer/domviewer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/selenium-core/domviewer/domviewer.css -------------------------------------------------------------------------------- /selenium-core/domviewer/domviewer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/selenium-core/domviewer/domviewer.html -------------------------------------------------------------------------------- /selenium-core/domviewer/selenium-domviewer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/selenium-core/domviewer/selenium-domviewer.js -------------------------------------------------------------------------------- /selenium-core/icons/all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/selenium-core/icons/all.png -------------------------------------------------------------------------------- /selenium-core/icons/continue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/selenium-core/icons/continue.png -------------------------------------------------------------------------------- /selenium-core/icons/continue_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/selenium-core/icons/continue_disabled.png -------------------------------------------------------------------------------- /selenium-core/icons/pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/selenium-core/icons/pause.png -------------------------------------------------------------------------------- /selenium-core/icons/pause_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/selenium-core/icons/pause_disabled.png -------------------------------------------------------------------------------- /selenium-core/icons/selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/selenium-core/icons/selected.png -------------------------------------------------------------------------------- /selenium-core/icons/step.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/selenium-core/icons/step.png -------------------------------------------------------------------------------- /selenium-core/icons/step_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/selenium-core/icons/step_disabled.png -------------------------------------------------------------------------------- /selenium-core/iedoc-core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/selenium-core/iedoc-core.xml -------------------------------------------------------------------------------- /selenium-core/iedoc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/selenium-core/iedoc.xml -------------------------------------------------------------------------------- /selenium-core/lib/cssQuery/cssQuery-p.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/selenium-core/lib/cssQuery/cssQuery-p.js -------------------------------------------------------------------------------- /selenium-core/lib/cssQuery/src/cssQuery-level2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/selenium-core/lib/cssQuery/src/cssQuery-level2.js -------------------------------------------------------------------------------- /selenium-core/lib/cssQuery/src/cssQuery-level3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/selenium-core/lib/cssQuery/src/cssQuery-level3.js -------------------------------------------------------------------------------- /selenium-core/lib/cssQuery/src/cssQuery-standard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/selenium-core/lib/cssQuery/src/cssQuery-standard.js -------------------------------------------------------------------------------- /selenium-core/lib/cssQuery/src/cssQuery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/selenium-core/lib/cssQuery/src/cssQuery.js -------------------------------------------------------------------------------- /selenium-core/lib/prototype.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/selenium-core/lib/prototype.js -------------------------------------------------------------------------------- /selenium-core/lib/scriptaculous/builder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/selenium-core/lib/scriptaculous/builder.js -------------------------------------------------------------------------------- /selenium-core/lib/scriptaculous/controls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/selenium-core/lib/scriptaculous/controls.js -------------------------------------------------------------------------------- /selenium-core/lib/scriptaculous/dragdrop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/selenium-core/lib/scriptaculous/dragdrop.js -------------------------------------------------------------------------------- /selenium-core/lib/scriptaculous/effects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/selenium-core/lib/scriptaculous/effects.js -------------------------------------------------------------------------------- /selenium-core/lib/scriptaculous/scriptaculous.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/selenium-core/lib/scriptaculous/scriptaculous.js -------------------------------------------------------------------------------- /selenium-core/lib/scriptaculous/slider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/selenium-core/lib/scriptaculous/slider.js -------------------------------------------------------------------------------- /selenium-core/lib/scriptaculous/unittest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/selenium-core/lib/scriptaculous/unittest.js -------------------------------------------------------------------------------- /selenium-core/lib/snapsie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/selenium-core/lib/snapsie.js -------------------------------------------------------------------------------- /selenium-core/scripts/find_matching_child.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/selenium-core/scripts/find_matching_child.js -------------------------------------------------------------------------------- /selenium-core/scripts/htmlutils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/selenium-core/scripts/htmlutils.js -------------------------------------------------------------------------------- /selenium-core/scripts/injection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/selenium-core/scripts/injection.html -------------------------------------------------------------------------------- /selenium-core/scripts/selenium-api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/selenium-core/scripts/selenium-api.js -------------------------------------------------------------------------------- /selenium-core/scripts/selenium-browserbot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/selenium-core/scripts/selenium-browserbot.js -------------------------------------------------------------------------------- /selenium-core/scripts/selenium-browserdetect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/selenium-core/scripts/selenium-browserdetect.js -------------------------------------------------------------------------------- /selenium-core/scripts/selenium-commandhandlers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/selenium-core/scripts/selenium-commandhandlers.js -------------------------------------------------------------------------------- /selenium-core/scripts/selenium-executionloop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/selenium-core/scripts/selenium-executionloop.js -------------------------------------------------------------------------------- /selenium-core/scripts/selenium-logging.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/selenium-core/scripts/selenium-logging.js -------------------------------------------------------------------------------- /selenium-core/scripts/selenium-remoterunner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/selenium-core/scripts/selenium-remoterunner.js -------------------------------------------------------------------------------- /selenium-core/scripts/selenium-testrunner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/selenium-core/scripts/selenium-testrunner.js -------------------------------------------------------------------------------- /selenium-core/scripts/selenium-version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/selenium-core/scripts/selenium-version.js -------------------------------------------------------------------------------- /selenium-core/scripts/ui-doc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/selenium-core/scripts/ui-doc.html -------------------------------------------------------------------------------- /selenium-core/scripts/ui-element.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/selenium-core/scripts/ui-element.js -------------------------------------------------------------------------------- /selenium-core/scripts/ui-map-sample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/selenium-core/scripts/ui-map-sample.js -------------------------------------------------------------------------------- /selenium-core/scripts/user-extensions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/selenium-core/scripts/user-extensions.js -------------------------------------------------------------------------------- /selenium-core/scripts/user-extensions.js.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/selenium-core/scripts/user-extensions.js.sample -------------------------------------------------------------------------------- /selenium-core/scripts/xmlextras.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/selenium-core/scripts/xmlextras.js -------------------------------------------------------------------------------- /selenium-core/selenium-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/selenium-core/selenium-logo.png -------------------------------------------------------------------------------- /selenium-core/selenium-test.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/selenium-core/selenium-test.css -------------------------------------------------------------------------------- /selenium-core/selenium.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/selenium-core/selenium.css -------------------------------------------------------------------------------- /selenium-core/xpath/dom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/selenium-core/xpath/dom.js -------------------------------------------------------------------------------- /selenium-core/xpath/javascript-xpath-0.1.11.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/selenium-core/xpath/javascript-xpath-0.1.11.js -------------------------------------------------------------------------------- /selenium-core/xpath/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/selenium-core/xpath/util.js -------------------------------------------------------------------------------- /selenium-core/xpath/xmltoken.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/selenium-core/xpath/xmltoken.js -------------------------------------------------------------------------------- /selenium-core/xpath/xpath.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/selenium-core/xpath/xpath.js -------------------------------------------------------------------------------- /selenium.yml.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/selenium.yml.example -------------------------------------------------------------------------------- /test/fixtures/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/test/fixtures/config.yml -------------------------------------------------------------------------------- /test/fixtures/selenium.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/test/fixtures/selenium.yml -------------------------------------------------------------------------------- /test/paths_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/test/paths_test.rb -------------------------------------------------------------------------------- /test/renderer_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/test/renderer_test.rb -------------------------------------------------------------------------------- /test/rselenese_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/test/rselenese_test.rb -------------------------------------------------------------------------------- /test/selenese_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/test/selenese_test.rb -------------------------------------------------------------------------------- /test/selenium_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/test/selenium_controller_test.rb -------------------------------------------------------------------------------- /test/selenium_on_rails_config_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/test/selenium_on_rails_config_test.rb -------------------------------------------------------------------------------- /test/selenium_support_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/test/selenium_support_test.rb -------------------------------------------------------------------------------- /test/setup_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/test/setup_test.rb -------------------------------------------------------------------------------- /test/suite_renderer_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/test/suite_renderer_test.rb -------------------------------------------------------------------------------- /test/switch_environment_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/test/switch_environment_controller_test.rb -------------------------------------------------------------------------------- /test/test_builder_functions_authortest.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/test/test_builder_functions_authortest.rb -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/test/test_helper.rb -------------------------------------------------------------------------------- /test_data/.hidden.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test_data/_partial.rsel: -------------------------------------------------------------------------------- 1 | assert_title "Partial from #{source}" -------------------------------------------------------------------------------- /test_data/backup.html~: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test_data/empty_suite/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/test_data/empty_suite/.gitignore -------------------------------------------------------------------------------- /test_data/own_layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/test_data/own_layout.html -------------------------------------------------------------------------------- /test_data/partials/_html.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/test_data/partials/_html.html -------------------------------------------------------------------------------- /test_data/partials/_nesting.rsel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/test_data/partials/_nesting.rsel -------------------------------------------------------------------------------- /test_data/partials/_rhtml.rhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/test_data/partials/_rhtml.rhtml -------------------------------------------------------------------------------- /test_data/partials/_rsel.rsel: -------------------------------------------------------------------------------- 1 | type hello, 'RSelenese partial' 2 | -------------------------------------------------------------------------------- /test_data/partials/_sel.sel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/test_data/partials/_sel.sel -------------------------------------------------------------------------------- /test_data/partials/all_partials.rsel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/test_data/partials/all_partials.rsel -------------------------------------------------------------------------------- /test_data/rhtml.rhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/test_data/rhtml.rhtml -------------------------------------------------------------------------------- /test_data/rselenese.rsel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/test_data/rselenese.rsel -------------------------------------------------------------------------------- /test_data/selenese.sel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paytonrules/selenium-on-rails/HEAD/test_data/selenese.sel -------------------------------------------------------------------------------- /test_data/suite_one/subsuite/suite_one_subsuite_testcase.sel: -------------------------------------------------------------------------------- 1 | |open|/| -------------------------------------------------------------------------------- /test_data/suite_one/suite_one_testcase1.sel: -------------------------------------------------------------------------------- 1 | |open|/| -------------------------------------------------------------------------------- /test_data/suite_one/suite_one_testcase2.sel: -------------------------------------------------------------------------------- 1 | |open|/| -------------------------------------------------------------------------------- /test_data/suite_two/suite_two_testcase.sel: -------------------------------------------------------------------------------- 1 | |open|/| --------------------------------------------------------------------------------