Junior — Middle
Have you created your own scripts without using third-party libraries or templates from scratch?
sobes.tech AI
Answer from AI
Yes, creating custom scripts from scratch without using third-party libraries or templates is an important skill in QA and test automation. It helps to better understand the automation logic, code structure, and interaction with the tested application.
For example, you can write a simple Python script to check the availability of a web page without using ready-made frameworks:
import requests
url = "https://example.com"
response = requests.get(url)
if response.status_code == 200:
print("Page is accessible")
else:
print("Access issues")
Although this example uses the requests library, the script itself is written from scratch, without templates or ready-made testing solutions. This approach helps to better understand the process and adapt solutions to specific tasks.