ember-cli-page-object icon indicating copy to clipboard operation
ember-cli-page-object copied to clipboard

This ember-cli addon eases the construction of page objects on your acceptance and integration tests

Results 53 ember-cli-page-object issues
Sort by recently updated
recently updated
newest added

Supersedes: https://github.com/san650/ember-cli-page-object/issues/473 As mentioned here: https://github.com/san650/ember-cli-page-object/pull/467#issuecomment-550490384 there are other APIs in progress, but they seem _very_ verbose. Ideally, from a testing perspective we wouldn't need any additional imports: ```ts myPage.object.with.nested.things.dom...

(This are some ideas and we're open to suggestions) ## Main goals * Make it easier to maintain * Support fewer versions of ember/ember-cli (just 3.0 and above?) * Remove...

Assign is being exported here https://github.com/san650/ember-cli-page-object/blob/master/addon-test-support/-private/helpers.js#L1. Why would we be exporting assign? This is being transpiled to below. This is preventing an upgrade to ember 4. Could we remove this...

Right now we do only support jquery selectors, which is the largest blocker to get rid of this dependency(https://github.com/san650/ember-cli-page-object/issues/289). Meanwhile it seems that support for different search engines like `xpath`,...

feature

I'm currently looking for a framework for ember e2e tests that handles promises without waits and sleeps, but I need XPath support to be able to define more complicated page...

feature

With adapters we should be able to configure page object interactions per different environments. However, there are still some blockers to make page objects work cross-env. The goal of the...

The `PageObject.text` helper returns hidden text. While — by comparison — `innerText` does not. ## Given ```hbs foo bar baz ``` ```js const page = PageObject.create({ example: PageObject.text('#example') }); ```...

feature

a part of #512 a super dirty, but almost working...