An Introduction to API Based Documentation Automating
TLDR; The formal api documentation specifications ecosystems have tools that can help create documentation more easily and use the documentation to automatically validate e.g. Dredd, Swagger and StopLight
I’m working on an API for The Pulper, and I want to write documentation in a formal spec and use tools to validate it. Sounds Easy.
How to write a link checker in the browser with Vanilla JavaScript
TLDR; A simple link checker running from a snippet or console has some secondary advantages like jumping to the links and showing CSP and CORB errors
AccelQ Overview
TLDR; AccelQ tool helps automate web applications and APIs using a DSL rather than programming language
How to Practice your JavaScript, Software Testing and Test Automation
One way I practice my Software Testing, improve my JavaScript programming and practice my automating is by ‘hacking’ JavaScript games.
A Tactical Automation Case Study - Java, JavaScript, API and Dev Tools
TLDR; Automating is not limited to “Test Automation”. With the ability to code, we gain the flexibility to approach problems in multiple ways. We can refactor tactical code to become strategic code.
I needed to migrate some data from one system to another. To do it manually would have taken me about 1.5 to 2 days. I automated tactically and was done in 2 hours.
Pro Con Critical Evaluation - but What If?
TLDR; Any time you see a list of pros and cons on the internet and ‘believe’ the pro or con, ask yourself “But What if…?”
I see a lot of pro and con posts and questions on the internet. They lack the context behind the pro and con identification, so I find it hard to use them directly.
Is Selenium IDE a Tactical or Strategic tool?
Selenium IDE has been getting some press recently since AppliTools are resurrecting it.
Tips for a Successful Test Automation Proof of Concept
A great way to start introducing automated execution and tooling into your test process is to conduct a proof of concept (POC).
A POC can often provide, in a few days, far more information than an extended RFP and trial evaluation process, assuming the right people are involved and the aims are clear.
How to Bypass .click() and issue a click event
For the first time, in a long time, I’ve had to bypass WebDriver click() method and use JavaScript to issue a click event.
In this post I’ll explain why, and look at the pros and cons of doing so.
When would I choose basic HTTP libraries rather than using RestAssured?
TLDR: when I have a small set of HTTP use-cases, and I’m working on fast in-build HTTP integration verification then I’ll probably use HttpURLConnection