Open
Description
I am opening dialog in my app like this:
const path = dialog.showOpenDialog(remote.getCurrentWindow(), {
title: i18n.t("Where do you want to save it?"),
properties: ['openDirectory', 'createDirectory']
});
And I cannot find way to select directory in tests. I tried using webdriverio's keys
with no luck. I thought that maybe electron creates second window and that's why I can't interact with it but by using client.getWindowCount()
it founds only 1 window. Any ideas?