我试图弄清楚如何访问selector
我们传递给 @Component
装饰器的内容。
例如
@Component({
selector: 'my-component'
})
class MyComponent {
constructor() {
// I was hoping for something like the following but it doesn't exist
this.component.selector // my-component
}
}
最终,我想使用它来创建一个自动添加属性的指令,data-tag-name="{this.component.selector}"
以便我可以使用 Selenium 查询通过它们的选择器可靠地找到我的角度元素。
我没有使用量角器