Is there any advantage to using el = de.query(By.css('h2')).nativeElement; over a native element API of el = de.nativeElement.querySelector('h2');? They provide the same result.
Just starting out with Angular 4 Unit Tests and wanted to know if there is any performance differences, or reasons to use one over the other since they accomplish the same job. Not sure I understand the convenience of using By.css(...), or what circumstance/reason you might use one over the other.