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
4 changes: 2 additions & 2 deletions .github/workflows/render.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@ jobs:
nohup Xvfb :99 -screen 0 1920x1080x24 &

# Run the Python script
python3 guideframe_tutors_demo.py github
python3 -m guideframe_demos.tutors_demo.guideframe_tutors_demo github
# Upload the screen recording as an artifact
- name: Upload screen recording as artifact
uses: actions/upload-artifact@v4
with:
name: render-tutors-demo
path: ./guideframe_tutors_demo*.mp4
path: guideframe_demos/tutors_demo/guideframe_tutors_demo*.mp4
2 changes: 2 additions & 0 deletions .github/workflows/selenium_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ jobs:
# Start virtual display
export DISPLAY=:99
nohup Xvfb :99 -screen 0 1920x1080x24 &

export PYTHONPATH=$GITHUB_WORKSPACE:$PYTHONPATH

# Run the Selenium script
python3 -m selenium_demos.selenium_automation_tests github
Empty file added guideframe_demos/__init__.py
Empty file.
Empty file.
File renamed without changes.
File renamed without changes.
Empty file.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Now let's move on to the simple starter card.
Let's continue to the alternative starter card. Before using the scroll to element function to move to the reference course.

## Step 8
In this case, we use this function to access an element that isn't in the display window.
In this case, we use this function to access an element that may not be in the display window.

## Step 9
Let's use the click element by xpath function. We'll use it to access the search bar at the top of the screen.
Expand Down
File renamed without changes.