1 - добавить идентификатор в ваш div,
<div class="child2" #child2>child2</div>
2 - в вашем компоненте получить HTMLElement с помощью @ViewChild decorator
import { ViewChild } from '@angular/core';
export class MyChildComponent {
@ViewChild("child2") myChild2;
public externalClick(){
this.myChild2.nativeElement.click();
}
3 - в вашем AppComponent
@ViewChild(MyChildComponent) myChildComp : MyChildComponent;
open(){
this.myChildComp.externalClick();
}