TYPO3-Documentation / t3docs-screenshots

Providing a way to take screenshots of the TYPO3 CMS in a scripted way.
MIT License
10 stars 6 forks source link

Create action to easily navigate to a module #232

Open linawolf opened 2 years ago

linawolf commented 2 years ago

We need to navigate to a certain module very often. This usually consists of:

{"action": "see", "text": "List"},
{"action": "click", "link": "List"},
{"action": "openPageTreePath", "path": ["Congratulations"]},
{"action": "switchToContentFrame"},

if will currently fail

in many cases we also need to navigate to a submodule, i.e.

{"action": "see", "text": "Reports"},
{"action": "click", "link": "Reports"},
{"action": "switchToContentFrame"},
{"action": "waitForText", "text": "Reports"},

{
    "action": "selectOption",
    "select": "select.t3-js-jumpMenuBox",
    "option": "Installed Services"
},
linawolf commented 2 years ago

related https://github.com/TYPO3-Documentation/t3docs-screenshots/issues/185