

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Why Selenium IDE is not used for dynamic Website testing?
Selenium IDE is not used for dynamic testing. It can be used for a quick solution for a simple automation scenario, but not for developing an entire regression suite. The reasons for doing so are listed below −
Selenium IDE is a Firefox plugin and hence mostly compatible with only Firefox browser.
Selenium IDE is majorly used for prototyping purpose and can be used to automate static web pages only. There can be multiple issues if we try to test a dynamic page with Selenium IDE.
Instead of Selenium IDE, Selenium webdriver can be used since it provides a programming interface to identify elements and perform actions on them while creating a test case.
Selenium IDE is mostly used for its record and play feature and not to automate a dynamic website having complex automation scenarios.
Selenium IDE does not assist object oriented programming.
The elements can be identified only with absolute xpath in Selenium IDE.
In case of a dynamic webpage, we may have to handle multiple navigations, alerts, pop-ups and so on. All these cannot be handled with Selenium IDE.
Mouse and keyboard movements cannot be performed with Selenium IDE.
Selenium IDE does not have the ability to support listeners.
Selenium IDE cannot be adopted for the cross-browser testing.
- Related Questions & Answers
- Why GeckoDriver is used in selenium?
- Cookie Testing: Example Test Cases for Website
- Why do we use WebDriver instead of Selenium IDE?
- Static Testing Vs Dynamic Testing
- What is Dynamic Testing? (Types, Techniques, Example)
- How to create nested test suites for Selenium IDE?
- How to use Selenium IDE?
- Dynamic Testing in Software Engineering
- Why Selenium RC is deprecated?
- How do I use Selenium IDE?
- Difference between Static and Dynamic Testing
- Can Selenium be used for .NET applications?
- Why is software testing a need today?
- Why use Selenium WebDriver for Web Automation?
- How to automate Calendar using Selenium WebDriver for Testing?