rickypc / selenium-page-object-generator

A nimble and flexible Selenium Page Object Model generator to improve agile testing process velocity.

Home Page:https://chrome.google.com/webstore/detail/epgmnmcjdhapiojbohkkemlfkegmbebb

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Probably need a constructor as well

delfindevassy opened this issue · comments

Don't this generated page need the constructor with below code in any class that it generates?

{
this.driver = browser;
PageFactory.InitElements(browser, this);
}