angrykoala / wendigo

A proper monster for front-end automated testing

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

All private methods and properties must begin with _

angrykoala opened this issue · comments

To keep consistency and avoid unwanted access to private methods and properties when using wendigo with javascript, all private methods should begin with _

eg:

private page;
// ...

this.page;

should be changed to:

private _page;
// ...
this._page;