13 lines
210 B
TypeScript
13 lines
210 B
TypeScript
|
|
export class DomHelper
|
||
|
|
{
|
||
|
|
public static Create(): DomHelper
|
||
|
|
{
|
||
|
|
return new DomHelper();
|
||
|
|
}
|
||
|
|
|
||
|
|
public ClickElement(id: string): void
|
||
|
|
{
|
||
|
|
document.getElementById(id)?.click();
|
||
|
|
}
|
||
|
|
}
|