I need to connect to an AWS DynamoDB. There is an Eclipse plugin for this. Is there a way to use the Eclipse plugin in Katalon?
1 Like
I think you should look at AWS Commandline Interface.
Install it into your PC and execute “aws dynamodb describe-table -table-name xxxx” from Katalon Test Case using Groovy’s RunCommand. See
You will get query result from AWS in JSON. Your test case will parse the JSON and do whatever you want.
1 Like