page objects pattern

Page objects represents the web application user interface which you test is interacting;

Using page object pattern, you can:

1). create reusable code which can be shared acrosse multiple test cases;

2). reducing the amount of duplicated codes

3). if interface changes, the fix only need to change in one place;

你可能感兴趣的:(page objects pattern)