InterviewSolution
This section includes InterviewSolutions, each offering curated multiple-choice questions to sharpen your knowledge and support exam preparation. Choose a topic below to get started.
| 101. |
Mention in details the challenges and limitations faced while using Selenium WebDriver? |
|
Answer» Selenium can only be used to test/automate web-based applications. It cannot be used to automate desktop applications. Selenium WEBDRIVER doesn’t have an INBUILT data-driven testing mechanism. This means the user needs to manually connect automated tests to EXTERNAL data sources. Selenium doesn't SUPPORT testing on images. It needs to be integrated with Sikuli for image-based testing. There is no native reporting capability. This can be resolved by integrating it with frameworks like TestNG /JUnit. A Windows-based POPUP cannot be tested using Selenium alone. AutoIT needs to be used to handle the windows based popups. Selenium is an open source so there is no dedicated support available for it.Selenium doesn’t have built-in object repository. |
|