mirror of
https://github.com/arsvendg/Stirling-PDF.git
synced 2026-07-16 11:23:10 +02:00
* initial Commit * update prerun * tweak the prompt * update the test * finetune prompt * change the prompt * minor change to retry test * add debug --------- # Description Please provide a summary of the changes, including relevant motivation and context. Closes #(issue_number) ## Checklist - [ ] I have read the [Contribution Guidelines](https://github.com/Stirling-Tools/Stirling-PDF/blob/main/CONTRIBUTING.md) - [ ] I have performed a self-review of my own code - [ ] I have commented my code, particularly in hard-to-understand areas - [ ] My changes generate no new warnings - [ ] I have read the section [Add New Translation Tags](https://github.com/Stirling-Tools/Stirling-PDF/blob/main/HowToAddNewLanguage.md#add-new-translation-tags) (for new translation tags only) --------- Signed-off-by: GitHub Action <[email protected]> Signed-off-by: dependabot[bot] <[email protected]> Signed-off-by: Ludovic Ortega <[email protected]> Co-authored-by: Tarun Kumar S <[email protected]> Co-authored-by: Ian Jennings <[email protected]> Co-authored-by: Corbinian Grimm <[email protected]> Co-authored-by: albanobattistella <[email protected]> Co-authored-by: Eric <[email protected]> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: GitHub Action <[email protected]> Co-authored-by: swanemar <[email protected]> Co-authored-by: pixeebot[bot] <104101892+pixeebot[bot]@users.noreply.github.com> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: Manuel Mora Gordillo <[email protected]> Co-authored-by: Manu <[email protected]> Co-authored-by: Ludy <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Florian Fish <[email protected]> Co-authored-by: reecebrowne <[email protected]> Co-authored-by: Dimitrios Kaitantzidis <[email protected]> Co-authored-by: Rania Amina <[email protected]> Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com> Co-authored-by: Ludovic Ortega <[email protected]> Co-authored-by: Philip H. <[email protected]> Co-authored-by: Saud Fatayerji <[email protected]> Co-authored-by: MaratheHarshad <[email protected]> Co-authored-by: Harshad Marathe <harshad@DESKTOP-1MNKUHA> Co-authored-by: ninjat <[email protected]> Co-authored-by: Peter Dave Hello <[email protected]> Co-authored-by: Rafael Encinas <[email protected]> Co-authored-by: Renan <[email protected]> Co-authored-by: leo-jmateo <[email protected]> Co-authored-by: S. Neuhaus <[email protected]> Co-authored-by: Dimitris Kaitantzidis <[email protected]>
This commit is contained in:
co-authored by
Tarun Kumar S
Ian Jennings
Corbinian Grimm
albanobattistella
Eric
github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
GitHub Action
swanemar
pixeebot[bot] <104101892+pixeebot[bot]@users.noreply.github.com>
github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Manuel Mora Gordillo
Manu
Ludy
dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Florian Fish
reecebrowne
Dimitrios Kaitantzidis
Rania Amina
Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
Ludovic Ortega
Philip H.
Saud Fatayerji
MaratheHarshad
Harshad Marathe
ninjat
Peter Dave Hello
Rafael Encinas
Renan
leo-jmateo
S. Neuhaus
Dimitris Kaitantzidis
parent
89d319332a
commit
e0f553c15a
@@ -0,0 +1,140 @@
|
||||
version: 4.0.44
|
||||
steps:
|
||||
- prompt: open chrome
|
||||
commands:
|
||||
- command: focus-application
|
||||
name: Google Chrome
|
||||
- prompt: click on view PDF
|
||||
commands:
|
||||
- command: focus-application
|
||||
name: Google Chrome
|
||||
- command: hover-text
|
||||
text: View PDF
|
||||
description: button to view PDF
|
||||
action: click
|
||||
- prompt: click on view PDF
|
||||
commands:
|
||||
- command: wait
|
||||
timeout: 5000
|
||||
- command: assert
|
||||
expect: a pdf is open
|
||||
- prompt: go back to the previous page
|
||||
commands:
|
||||
- command: focus-application
|
||||
name: Google Chrome
|
||||
- command: press-keys
|
||||
keys:
|
||||
- alt
|
||||
- left
|
||||
- prompt: go back to the previous page
|
||||
commands:
|
||||
- command: assert
|
||||
expect: it is in homepage
|
||||
- prompt: >-
|
||||
click on sun icon in the header section and make sure the theme of the
|
||||
website changes, if it does then change it back by clicking on the moon
|
||||
icon at the exact same place
|
||||
commands:
|
||||
- command: focus-application
|
||||
name: Google Chrome
|
||||
- command: hover-image
|
||||
description: sun icon in the header section
|
||||
action: click
|
||||
- command: assert
|
||||
expect: the theme of the website has changed
|
||||
- command: hover-image
|
||||
description: moon icon in the header section
|
||||
action: click
|
||||
- prompt: >-
|
||||
click on search icon in the header section and search for "rotate", click
|
||||
on it in the drop down, you will be taken to the rotate pdf page, if so
|
||||
then go back to the homepage
|
||||
commands:
|
||||
- command: focus-application
|
||||
name: Google Chrome
|
||||
- command: hover-image
|
||||
description: search icon in the header section
|
||||
action: click
|
||||
- command: type
|
||||
text: rotate
|
||||
- command: wait
|
||||
timeout: 2000
|
||||
- command: hover-text
|
||||
text: Rotate
|
||||
description: dropdown option for rotate
|
||||
action: click
|
||||
- command: wait
|
||||
timeout: 5000
|
||||
- command: assert
|
||||
expect: the page title is "Rotate PDF"
|
||||
- command: press-keys
|
||||
keys:
|
||||
- alt
|
||||
- left
|
||||
- prompt: >-
|
||||
click on search bar and search for "rotate", click on it in the drop down,
|
||||
you will be taken to the rotate pdf page, if so then go back to the
|
||||
homepage
|
||||
commands:
|
||||
- command: focus-application
|
||||
name: Google Chrome
|
||||
- command: hover-text
|
||||
text: Search for features...
|
||||
description: search bar
|
||||
action: click
|
||||
- command: type
|
||||
text: rotate
|
||||
- command: wait
|
||||
timeout: 2000
|
||||
- command: hover-text
|
||||
text: Rotate
|
||||
description: dropdown option for rotate
|
||||
action: click
|
||||
- command: wait
|
||||
timeout: 5000
|
||||
- command: assert
|
||||
expect: the page title is "Rotate PDF"
|
||||
- command: press-keys
|
||||
keys:
|
||||
- alt
|
||||
- left
|
||||
- command: wait
|
||||
timeout: 2000
|
||||
- prompt: >-
|
||||
click on Tools button in the header section and Check if the background of
|
||||
the merge button is highlighted when hovered over, similarly hover over a
|
||||
few other buttons and check for the background of the button is highlighted
|
||||
when hovered over
|
||||
commands:
|
||||
- command: focus-application
|
||||
name: Google Chrome
|
||||
- command: hover-text
|
||||
text: Tools
|
||||
description: Tools button in the header section
|
||||
action: click
|
||||
- command: assert
|
||||
expect: the Tools dropdown is open
|
||||
- command: hover-text
|
||||
text: Merge
|
||||
description: Merge button
|
||||
action: hover
|
||||
- command: assert
|
||||
expect: the background of the Merge button is highlighted
|
||||
- command: hover-text
|
||||
text: PDF to Image
|
||||
description: PDF to Image button
|
||||
action: hover
|
||||
- command: assert
|
||||
expect: the background of the PDF to Image button is highlighted
|
||||
- command: hover-text
|
||||
text: PDF to CSV
|
||||
description: PDF to CSV button
|
||||
action: hover
|
||||
- command: assert
|
||||
expect: the background of the PDF to CSV button is highlighted
|
||||
- command: hover-text
|
||||
text: Sign
|
||||
description: Sign button
|
||||
action: hover
|
||||
- command: assert
|
||||
expect: the background of the Sign button is highlighted
|
||||
Reference in New Issue
Block a user