File tree Expand file tree Collapse file tree 4 files changed +19
-6
lines changed
Expand file tree Collapse file tree 4 files changed +19
-6
lines changed Original file line number Diff line number Diff line change 11*** Settings ***
22Library Browser
3+ Library Process
4+
5+
6+ *** Variables ***
7+ @{EXCLUDE_FROM_PDF } Example Questions
38
49
510*** Test Cases ***
611Gen Syllabus
12+ Build Docusaurus
713 Open Syllabus
814 Expand Menues
915 Generate Syllabus.pdf
16+ [Teardown] Process.Terminate All Processes
1017
1118
1219*** Keywords ***
20+ Build Docusaurus
21+ Process.Run Process npm run build cwd=website
22+ Process.Start Process npm run serve alias=docusaurus cwd=website
23+
1324Open Syllabus
1425 New Browser chromium headless=False
15- New Page https ://robotframework.org /robotframework-RFCP-syllabus/docs/overview
26+ New Page http ://localhost:3000 /robotframework-RFCP-syllabus/docs/overview
1627 ${dark } Get Element States
1728 ... button[aria-label="Switch between dark and light mode (currently dark mode)"]
1829 ... then
@@ -32,6 +43,8 @@ Generate Syllabus.pdf
3243 ${writer } Evaluate pypdf.PdfWriter()
3344 FOR ${page } IN @{pages }
3445 Click ${page }
46+ ${title } Get Title
47+ IF $title.split('|', 1)[0].strip() in $EXCLUDE_FROM_PDF CONTINUE
3548 Scroll To vertical=bottom behavior=smooth
3649 sleep 1s
3750 ${title } Get Title then value.split("|")[0]
Original file line number Diff line number Diff line change 11/*
22* This file is automatically generated and will be overridden when running the build process.
3- * Generated on: 11/22/2025, 1:09:21 PM
3+ * Generated on: 11/22/2025, 2:34:08 PM
44*/
55
66export interface QuizPage {
Original file line number Diff line number Diff line change @@ -17,15 +17,15 @@ function HomepageHeader() {
1717 { siteConfig . title }
1818 </ Heading >
1919 < p className = "hero__subtitle" > { siteConfig . tagline } </ p >
20- < p >
21- < div className = { styles . buttons } >
20+ < div className = { styles . buttons } >
21+ < p >
2222 < Link
2323 className = "button button--secondary button--lg"
2424 to = "/docs/overview" >
2525 Open the Syllabus Online
2626 </ Link >
27- </ div >
28- </ p >
27+ </ p >
28+ </ div >
2929 < div className = { styles . buttons } >
3030 < Link
3131 className = "button button--secondary button--lg"
You can’t perform that action at this time.
0 commit comments