ipydrawio/atest/lab/Tutorials.robot

61 wiersze
2.3 KiB
Plaintext

*** Comments ***
# Copyright 2022 ipydrawio contributors
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
*** Settings ***
Documentation Do the tutorials work?
Resource ../_Keywords.robot
Library OperatingSystem
Suite Setup Set Screenshot Directory ${OUTPUT DIR}${/}screenshots${/}tutorials
Force Tags component:tutorials
*** Variables ***
${XP MY LIBRARY TITLE} xpath://a[starts-with(@title, 'my+library')]
${XP MY LIBRARY SHAPES} ${XP MY LIBRARY TITLE}/following-sibling::div[1]//a[contains(@class, 'geItem')]
${XP SHAPE TOOLTIP} xpath://*[contains(@class, 'geSidebarTooltip')]
@{SHAPE TITLES} Exit Machine Queue Source
${CUSTOM LIBRARY TUTORIAL} clib.ipynb
*** Test Cases ***
Custom Library URL Hack
[Documentation] Does using a custom library work?
[Tags] component:widget
Copy File ${CLIB TUTORIAL} ${HOME}${/}${CUSTOM LIBRARY TUTORIAL}
Wait Until Keyword Succeeds 5x 5s Open ${CUSTOM LIBRARY TUTORIAL} in ${MENU NOTEBOOK}
Lab Command Restart Kernel and Run All Cells
Accept Default Dialog Option
Click Element css:.jp-Cell:last-child
Wait Until Keyword Succeeds 5x 5s Wait for a Diagram to be Ready
Wait Until Page Contains Element ${XP MY LIBRARY TITLE}
${shapes} = Get WebElements ${XP MY LIBRARY SHAPES}
Should be Equal as Integers ${shapes.__len__()} 4
FOR ${idx} ${shape} IN ENUMERATE ${shapes}
Mouse Over ${shape}
Wait Until Page Contains Element
... ${XP SHAPE TOOLTIP}\[contains(., '${SHAPE TITLES[${idx}]}')]
END
[Teardown] Tear Down Custom Library Tutorial
*** Keywords ***
Tear Down Custom Library Tutorial
Unselect Frame
Remove File ${HOME}${/}${CUSTOM LIBRARY TUTORIAL}