mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
fix(e2e): back to running all in a single driver
The key here is to ensure to properly await, and to make sure the element that is being waited for is specified, at least for more complex views, though it would be best for ALL views.
This commit is contained in:
@@ -11,7 +11,7 @@ class E2ETestPage extends Page {
|
||||
}
|
||||
|
||||
platforms.forEach(platform => {
|
||||
describe.skip('events/basic', () => {
|
||||
describe('events/basic', () => {
|
||||
|
||||
register('should init', driver => {
|
||||
const page = new E2ETestPage(driver, platform);
|
||||
|
||||
@@ -13,7 +13,7 @@ platforms.forEach(platform => {
|
||||
describe('infinite-scroll/basic', () => {
|
||||
register('should init', driver => {
|
||||
const page = new E2ETestPage(driver, platform);
|
||||
return page.navigate();
|
||||
return page.navigate('#content');
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
@@ -18,7 +18,7 @@
|
||||
</ion-toolbar>
|
||||
</ion-header>
|
||||
|
||||
<ion-content padding>
|
||||
<ion-content id="content" padding>
|
||||
|
||||
<ion-button onclick="toggleInfiniteScroll()" block>
|
||||
Toggle InfiniteScroll
|
||||
|
||||
Reference in New Issue
Block a user