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
Hello, i've tried to setup e2e testing in our ionic2/angulr2 project by this example. And i faced the problem that click or tap doesn't work with collection-view items: let product = element(by.cssContainingText('.product-item', 'Produktserien')); product.click() or browser.touchActions().tap(product).perform()
And i have to set browser.ignoreSynchronization = true because with it protractor begin to hang.
Even with sleeps and waitForClickable it won't work. Mb someone faced with the same issue and is there some workaround?
Hello, i've tried to setup e2e testing in our ionic2/angulr2 project by this example. And i faced the problem that click or tap doesn't work with collection-view items:
let product = element(by.cssContainingText('.product-item', 'Produktserien'));
product.click()
orbrowser.touchActions().tap(product).perform()
And i have to set
browser.ignoreSynchronization = true
because with it protractor begin to hang.Even with sleeps and waitForClickable it won't work. Mb someone faced with the same issue and is there some workaround?
The text was updated successfully, but these errors were encountered: