Skip to content

Commit f6204e8

Browse files
committed
built new Release PDF
1 parent b1008a8 commit f6204e8

File tree

4 files changed

+19
-6
lines changed

4 files changed

+19
-6
lines changed

Syllabus.pdf

-2.07 MB
Binary file not shown.

tools/gen_pdf.robot

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,29 @@
11
*** Settings ***
22
Library Browser
3+
Library Process
4+
5+
6+
*** Variables ***
7+
@{EXCLUDE_FROM_PDF} Example Questions
38

49

510
*** Test Cases ***
611
Gen 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+
1324
Open 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]

website/src/components/Quiz/quizComponents.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
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

66
export interface QuizPage {

website/src/pages/index.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff 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"

0 commit comments

Comments
 (0)