Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Toolbar.py « pageObjects « scripts « shared « gui « test - github.com/owncloud/client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6a46e534e13cef4d0545a90ba8f58f8d3760b603 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import names
import squish


class Toolbar:
    ACTIVITY_BUTTON = {
        "name": "settingsdialog_toolbutton_Activity",
        "type": "QToolButton",
        "visible": 1,
        "window": names.settings_OCC_SettingsDialog,
    }

    def clickActivity(self):
        squish.clickButton(squish.waitForObject(self.ACTIVITY_BUTTON))