Skip to content

Commit

Permalink
chore: next try to fix the wdi5 issues
Browse files Browse the repository at this point in the history
  • Loading branch information
petermuessig committed Aug 25, 2024
1 parent 9c548f5 commit f96be76
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions showcases/ui5-app/webapp/test/e2e/binding.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ describe("binding", function () {

// ui5 api + high-speed aggregation retrieval: https://ui5-community.github.io/wdi5/#/usage?id=getshorthand-conveniences
const oList = await browser.asControl(list);
console.log("oList", oList);
const aListItems = await oList.getItems(true);
expect(aListItems.length).toBeGreaterThanOrEqual(1);
});
Expand Down
2 changes: 1 addition & 1 deletion showcases/ui5-app/webapp/test/e2e/wdio.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ exports.config = {
browserName: "chrome",
"goog:chromeOptions": {
w3c: false,
args: process.env.HEADLESS ? ["--headless"] : ["window-size=1440,800"],
args: process.env.HEADLESS ? ["--headless", "window-size=1440,800"] : ["window-size=1440,800"],
},
acceptInsecureCerts: true,
// If outputDir is provided WebdriverIO can capture driver session logs
Expand Down

0 comments on commit f96be76

Please sign in to comment.