Challanges in Automation Testing - Selenium

  • Only web support  -> No support for mobile or api 
  • Very limited support for image comparison or testing 
  • No community support due to open source 
  • Limited built in reporting tool 
  • Flaky test (might be because of implicit wait)- use explicit wait 
  • Dynamic web content -> can be handlle using explicit wait
  • Window bases popup (non browser)-> file downloaded/allow camera.mic access    -> can be handle using autoID and robot 
  • Page scrolling - need to use java script executor for this 
  • Image comparison testing - sikuli is an alternative

Comments