Our application is using Angular7. Now we can thinking to automate out application with Selenium
Can Selenium handle our application?
João Farias
11.2k2 gold badges21 silver badges41 bronze badges
asked Feb 27, 2019 at 7:01
1 Answer 1
With Selenium you can interact with web-browsers to drive web-applications. Angular7 result into web-applications, so yes it should be able to handle it.
But, Angular has its own layer on top of Selenium to make testing Angular applications easier: https://www.protractortest.org/
Other reads:
answered Feb 27, 2019 at 10:44
-
ok. Thanks for the answer, for suppose if we use selenium for angular 7 applications is there any problems appear further i mean any errors or warnings?Jaga Reddy– Jaga Reddy2019年02月27日 11:41:30 +00:00Commented Feb 27, 2019 at 11:41
-
5No problem will happen, but Selenium is not best tool per se, because it does not know about the Angular internals. Protactor can leverage the Angular framework in order to create faster and cleaner scripts.João Farias– João Farias2019年02月27日 18:58:15 +00:00Commented Feb 27, 2019 at 18:58