Unable to edit project
Originally posted by user Rajtechwriter to the Stoplight Community on 04/04/2023 at 09:00 ET.
I added an API project and a few docs and was able to click them and edit. This was on the free versions. I later switched to a starter plan and now when I click Edit, it takes me to the landing page where it says I dont have any projects. Is this because my company admin is registered as the buyer? Does he need to perform any actions like add me to the Project or similar for me to edit?
This is why, as convenient as it is for constructing a suite of test cases quickly, I don't like using "Test Items" as the primary driver for what gets executed. You can't dynamically change things in code. Using an SQL data table, Excel spreadsheet, or CSV file to indicate the list of tests to execute is actually very flexible because then all you need to do is alter the file and click "run"... then your tests run. You could even have multiple copies of the file and, depending upon the configuration to run, you just drop in the necessary file or even have your code retrieve the file.
In very high level pseudo code, it could be something like this:
If configuration = US, then file_name = "US Test cases"
if configuration = Germany, then file_name = "Germany test cases"
ExecuteTests(file_name)