0

we have a requirement to test our web application through test automation using Selenium Webdriver

  1. Validate web application is loaded completely or not
  2. validate content is rendered or displayed without issues
  3. Headless mode

My doubt is can we certify that web application is loaded and content rendered without issues?

in headed mode ? yes , but headless mode it browser will invoke without head

Can someone help me to understand and is it right way to do test automation?

currently I have implemented in head mode and certifying to achieve as expected

now the requirement is headless on CI .

Expectation: Is it right approach headless mode to test content render and web application loading?

brocheppu
  • 3
  • 4

1 Answers1

0

Headless Browser

A Headless Browser is just like a regular web browser except that it doesn't have a a visible UI shell, so no tabs, URL bar, input fields, buttons, etc. It's just the website and nothing else as there’s no GUI to navigate. A Headless Browser can be controled through an automated script or manually through a command-line interface and you can still validate rendered contents without any issues.


tl; dr

Getting Started with Headless Chrome

undetected Selenium
  • 183,867
  • 41
  • 278
  • 352