Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Regression to dependency injection for function style page objects #4928

Open
jlp-craigmorten opened this issue Mar 18, 2025 · 0 comments
Open

Comments

@jlp-craigmorten
Copy link

In one of our projects we make use of page objects similar that use a function style, e.g.

const fields = {
  increaseButton: { css: 'button[data-testid="increase"]' },
  // ... rest of code
};

module.exports = () => name => ({
  element: `section [data-test-name="${name}"]`,

  increaseItem() {
    within(this.element, () => {
      I.waitAndClick(fields.increaseButton);
    });
  },

  // ... rest of code
});

Where it is used as follows:

Scenario('Example Test', ({ Tile }) => {
  const tile = Tile('Example Name');
  tile.increaseItem();

  // ... rest of code

These page objects are pulled in as documented via the include option in the codecept.conf.ts config files.

This has been working fine up to 3.6.10 but appears to have regressed in the 3.7.0 - 3.7.2 version range where we now see the following error:

1) Example Scenario
     Example Test:
   
Tile is not a function
TypeError: 
    at Test.<anonymous> (functional-tests/example/example-test.js:34:22)
    at Context.test.fn (node_modules/codeceptjs/lib/mocha/asyncWrapper.js:100:14)

It seems that other styles of page object are unimpacted.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant