You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In one of our projects we make use of page objects similar that use a function style, e.g.
constfields={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 })=>{consttile=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.
The text was updated successfully, but these errors were encountered:
In one of our projects we make use of page objects similar that use a function style, e.g.
Where it is used as follows:
These page objects are pulled in as documented via the
include
option in thecodecept.conf.ts
config files.This has been working fine up to
3.6.10
but appears to have regressed in the3.7.0 - 3.7.2
version range where we now see the following error:It seems that other styles of page object are unimpacted.
The text was updated successfully, but these errors were encountered: