Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion test/gui/features/add-account/account.feature
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ Feature: adding accounts
| password | 1234 |
Then "Alice Hansen" account should be opened

@smoke @skip
@smoke
Scenario: Add space manually from sync connection window
Given user "Alice" has created folder "simple-folder" in the server
And the user has started the client
Expand Down
7 changes: 6 additions & 1 deletion test/gui/pageObjects/SyncConnectionWizard.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
from types import SimpleNamespace
from appium.webdriver.common.appiumby import AppiumBy as By
from selenium.webdriver.common.keys import Keys
import time

from helpers.SetupClientHelper import get_current_user_sync_path
Expand Down Expand Up @@ -136,7 +137,11 @@ def select_space(space_name):
space_name=space_name
),
)
space_item.click()
# ISSUE: https://github.com/opencloud-eu/desktop/pull/879
# Workaround until above fix is merged
# TODO: Remove 'send_keys' and uncomment 'click' action
space_item.send_keys(Keys.ARROW_DOWN)
# space_item.click()
if space_item.get_attribute("selected") != "true":
raise AssertionError("Failed to select the space: " + space_name)

Expand Down
Loading