Changeset 2174869
- Timestamp:
- 10/17/2019 12:30:44 PM (6 years ago)
- Location:
- testrobo-safe-update/trunk
- Files:
-
- 4 edited
-
css/trsu.css (modified) (1 diff)
-
readme.txt (modified) (3 diffs)
-
trsu-plugin.php (modified) (2 diffs)
-
trsu-settings-page2.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
testrobo-safe-update/trunk/css/trsu.css
r2165496 r2174869 16 16 } 17 17 18 .steps-list { 19 margin-left: 30px; 20 list-style: initial; 21 } 22 18 23 .trsu-form-table { 19 24 border-spacing: 0 15px; 25 } 26 27 .trsu-form-table .table-values em { 28 color: #898989; 20 29 } 21 30 -
testrobo-safe-update/trunk/readme.txt
r2165962 r2174869 1 === Plugin Name ===1 === TestRobo Safe Update === 2 2 Tags: testing, automation, update, updates, auto 3 3 Requires at least: 3.7.0 … … 13 13 Monitors your site for any updates and will instantly trigger custom tests setup by you 14 14 15 #####WHAT IS TestRobo? 16 - TestRobo is the **#1 Platform For Easy Visual Tests!** 15 ##### FEATURES 16 - Now setup auto updates without any fear of breaking the site when you least expect it! 17 - Save valuable time if you manage multiple Wordpress sites and use it for more productive work. 18 - Get setup in under 5 minutes. No upfront time investment or steep learning curve. 19 - Automatically check your site for functional and visual changes after any plugin/theme/core update. Checks can also be additionally set to run on a customizable schedule, e.g. daily, weekly, etc. 20 21 #####WHAT IS TESTROBO? 22 - TestRobo is the **#1 Platform For Easy Visual & Functional Tests!** 17 23 - TestRobo has created a unique recording tool for effortless capturing of test scenarios which anybody can use from anywhere. 18 24 - The recorded tests and be re-run manually or automatically based on various triggers and/or a schedule. 19 25 - The mouse and keyboard actions are recorded by TestRobo. The user also should mark certain areas on the site which TestRobo will check for visual exactness. These areas can be as small or as big as the user wishes according to what is being tested. 26 - In addition to adding visual checks in the recording the user can also choose to add text based checks. 27 - Plus, many more features and improvements are in the pipeline. And we are also taking features requests so try to get yours in before others do. 20 28 21 22 ##### FEATURES23 - Now Setup Auto Updates Without Any Fear Of Breaking The Site When You Least Expect It!24 - Save Valuable Time If You Manage Multiple WordPress Sites. Spend Your Time On More Productive Work.25 - Get Setup In Under 5 Minutes26 Automatically check your site for functional and visual changes after any plugin/theme update. Checks can also be additionally set to run on a schedule, e.g. daily, weekly, etc.27 29 28 30 == Installation == … … 32 34 1. Upload the plugin files to the `/wp-content/plugins/testrobo-safe-update` directory, or install the plugin through the WordPress plugins screen directly. 33 35 1. Activate the plugin through the 'Plugins' screen in WordPress. 34 1. You will need a (FREE) TestRobo API key. It can be generated for FREE at [TestRobo App] (https://app.testrobo.io/ "TestRobo App")'sSettings page.35 1. Use theSettings->TestRobo Safe Update screen to insert your API key.36 1. Specify what tests to run by providing the test/suite ID. These tests would run automatically when a plugin/theme/core update takes place.36 1. You will need a (FREE) TestRobo API key. It can be generated for FREE in the [TestRobo App](https://app.testrobo.io/ "TestRobo App") Settings page. 37 1. Then go to Settings->TestRobo Safe Update screen to insert your API key. 38 1. Specify what tests to run by providing a suite ID. These tests would run automatically when a plugin/theme/core update takes place. 37 39 38 40 -
testrobo-safe-update/trunk/trsu-plugin.php
r2165966 r2174869 4 4 Plugin URI: https://testrobo.io 5 5 Description: Automatically check your site for functional and visual changes after any plugin/theme update. Checks can also be additionally set to run on a schedule, for e.g. daily, weekly, etc. 6 Version: 0.0. 46 Version: 0.0.5 7 7 Author: Karrot Labs 8 8 Author URI: https://karrotlabs.com/ … … 30 30 $apiKey = get_option("trsu_api_key"); 31 31 $url = "https://api.testrobo.io/extapi/execRequest"; 32 $jsonBody = json_encode(array( ' testcaseId' => $suiteId));32 $jsonBody = json_encode(array( 'suiteId' => $suiteId, 'type' => "suite")); 33 33 $response = wp_remote_post( $url, array( 34 34 'method' => 'POST', -
testrobo-safe-update/trunk/trsu-settings-page2.php
r2165496 r2174869 1 <h2> Safe Update</h2>1 <h2>TestRobo Safe Update - #1 Easy Sanity Testing Tool Tailored For WordPress </h2> 2 2 <div> 3 3 <h4>Plugin Settings</h4> … … 16 16 <td class="table-values"> 17 17 <input type="text" id="trsu_api_key" name="trsu_api_key" value="<?php echo htmlspecialchars(get_option('trsu_api_key')) ?>" /> 18 <em>Get a FREE api key from www.testrobo.io and place it here</em> 18 19 </td> 19 20 </tr> … … 22 23 <td class="table-values"> 23 24 <input type="text" id="trsu_suite_id" name="trsu_suite_id" value="<?php echo htmlspecialchars(get_option('trsu_suite_id')) ?>" /> 24 < span>The suite from which tests will trigger on detecting plugin/theme updates.</span>25 <em>The suite from which tests will trigger on detecting plugin/theme updates.</em> 25 26 </td> 26 27 </tr> … … 44 45 <hr/> 45 46 <p class="steps"> 46 <s pan> Get started in three easy steps: </span>47 <ul >47 <strong> Get started in three easy steps: </strong> 48 <ul class="steps-list"> 48 49 <li> Create your FREE account on www.testrobo.io </li> 49 <li> Create your first test with our easiest interface and without any programming </li> 50 <li> Enter your API key and the test id in your plugin settings here 51 </li> 50 <li> Create your first test using our innovative test recording experience. Save it in a suite. </li> 51 <li> Enter your API key and the suite id in your plugin settings (this page) </li> 52 52 </ul> 53 53 </p>
Note: See TracChangeset
for help on using the changeset viewer.