diff --git a/src/left-nav-title.json b/src/left-nav-title.json index db511355..a483f9fa 100644 --- a/src/left-nav-title.json +++ b/src/left-nav-title.json @@ -537,7 +537,7 @@ "/docs/troubleshooting/mobile-apps/failed-to-launch-test-recorder/": "Failed to Start Mobile Test Recorder" }, "why-chrome-extension": { - "/docs/FAQs/web-apps/why-chrome-extension/": "Why Install Chrome Extension" + "/docs/FAQs/web-apps/why-chrome-extension/": "Why Install Chrome Extension?" }, "why-cloud-devices-cannot-access-local-apps": { "/docs/FAQs/web-apps/why-cloud-devices-cannot-access-local-apps/": "Why cloud based test machines can't access locally hosted applications?" @@ -628,5 +628,8 @@ }, "install-chrome-extension":{ "/docs/test-step-recorder/install-chrome-extension/": "Install Chrome Extension" + }, + "automating-captcha":{ + "/docs/FAQs/web-apps/automating-captcha/": "Why Bypass CAPTCHA?" } } \ No newline at end of file diff --git a/src/pages/docs/FAQs/web-apps/automating-captcha.md b/src/pages/docs/FAQs/web-apps/automating-captcha.md new file mode 100644 index 00000000..c93c120a --- /dev/null +++ b/src/pages/docs/FAQs/web-apps/automating-captcha.md @@ -0,0 +1,33 @@ +--- +title: "Why Bypass CAPTCHA in Test Automation?" +metadesc: "CAPTCHA prevents bots from manipulating web services by verifying that the user is human. This article discusses the need of bypassing CAPTCHA in Test Automation" +noindex: false +order: 24.16 +page_id: "CAPTCHA in Test Automation" +warning: false +contextual_links: +- type: section + name: "Contents" +- type: link + name: "1. Why is CAPTCHA used?" + url: "#1-why-is-captcha-used?" +- type: link + name: "2. Can I automate CAPTCHA testing in my test environment?" + url: "#2-can-i-automate-captcha-testing-in-my-test-environment?" +--- + +--- + +CAPTCHA is a security measure that helps protect from spam and proves you are human and not a computer/bot trying to access the protected account. This article discusses some FAQs on automating CAPTCHA during testing. + +--- + +## **1. Why is CAPTCHA used?** +**Ans:** CAPTCHA prevents bots from manipulating web services by verifying that the user is human. It also ensures that real users interact with the website, protecting against automated scraping, spam, fraud, and unauthorized access. + +--- + +## **2. Can I automate CAPTCHA testing in my test environment?** +**Ans:** Yes, it is possible to automate CAPTCHA interactions, but there are some challenges as CAPTCHA systems constantly evolve. However, the industry's best practice is to recommend bypassing it in the test environment so your tests won't have to interact with the CAPTCHA. Automating the CAPTCHA contradicts the intended purpose of this security measure, as it aims to avoid human verification. + +--- \ No newline at end of file