|
| 1 | +export default () => ({ |
| 2 | + newsBanner: '🎉 RF 4.0 is out! <a href="www.google.com">Click here</a> for release notes', |
| 3 | + navbar: { |
| 4 | + items: [ |
| 5 | + 'Introduction', |
| 6 | + 'Getting started', |
| 7 | + 'Community', |
| 8 | + 'Resources' |
| 9 | + ], |
| 10 | + dropdownName: 'Links', |
| 11 | + dropdown: [ |
| 12 | + { |
| 13 | + name: 'Github', |
| 14 | + url: 'https://github.com/robotframework/robotframework', |
| 15 | + description: 'Source code + issues' |
| 16 | + }, |
| 17 | + { |
| 18 | + name: 'Forum', |
| 19 | + url: 'http://forum.robotframework.org/', |
| 20 | + description: 'Discuss Robot Framework' |
| 21 | + }, |
| 22 | + { |
| 23 | + name: 'Foundation', |
| 24 | + url: 'https://robotframework.org/foundation/', |
| 25 | + description: 'Support the development' |
| 26 | + }, |
| 27 | + { |
| 28 | + name: 'Robocon', |
| 29 | + url: 'https://robocon.io/', |
| 30 | + description: 'Annual conference' |
| 31 | + }, |
| 32 | + { |
| 33 | + name: 'Shop', |
| 34 | + url: 'https://reddyshop.co/robotframework/', |
| 35 | + description: 'Support the development' |
| 36 | + }, |
| 37 | + { |
| 38 | + name: 'RPA', |
| 39 | + url: 'https://robotframework.org/rpa/', |
| 40 | + description: 'RPA stuff' |
| 41 | + } |
| 42 | + ] |
| 43 | + }, |
| 44 | + introduction: { |
| 45 | + title: 'Introduction', |
| 46 | + body: |
| 47 | + `Robot Framework is a generic open source automation framework. |
| 48 | + It can be used for test automation and robotic process automation (RPA).<br><br> |
| 49 | +
|
| 50 | + Robot Framework is actively supported, with many industry-leading companies using |
| 51 | + it in their software development.<br><br> |
| 52 | +
|
| 53 | + Robot Framework is open and extensible and can be integrated with virtually any |
| 54 | + other tool to create powerful and flexible automation solutions. Being open source |
| 55 | + also means that Robot Framework is free to use without licensing costs. Robot Framework |
| 56 | + has easy syntax, utilizing human-readable keywords. Its capabilities can be extended |
| 57 | + by libraries implemented with Python or Java. The framework has a rich ecosystem |
| 58 | + around it, consisting of libraries and tools that are developed as separate projects.`, |
| 59 | + companies: [ |
| 60 | + { |
| 61 | + name: 'ABB', |
| 62 | + description: 'ABB is using Robot Framework in software development for testing distribution automation related configuration tools, web interfaces and embedded devices.', |
| 63 | + imgName: 'ABB.svg' |
| 64 | + }, |
| 65 | + { |
| 66 | + name: 'Cisco', |
| 67 | + description: 'Cisco’s Customer Experience (CX) supports the testing & validation of Cisco and 3rd party solutions deployed by our customers. This includes Solution Validation Services (SVS) delivered both on Cisco-premise and customer-premise.', |
| 68 | + imgName: 'Cisco.svg' |
| 69 | + }, |
| 70 | + { |
| 71 | + name: 'Condé Nast', |
| 72 | + description: 'Condé Nast <a href="https://technology.condenast.com/story/automated-testing-qa-brand-sites-robot-framework">transformed their quality assurance for their brand sites,</a> such as Brides, Wired and Architectural Digest, from an entirely manual process to automated one with Robot Framework.', |
| 73 | + imgName: 'Condé_Nast.svg' |
| 74 | + }, |
| 75 | + { |
| 76 | + name: 'KONE', |
| 77 | + description: 'KONE is widely using Robot Framework in software development for testing embedded systems in elevators and escalators.', |
| 78 | + imgName: 'Kone.svg' |
| 79 | + } |
| 80 | + ] |
| 81 | + }, |
| 82 | + gettingStarted: { |
| 83 | + title: 'Getting Started', |
| 84 | + body: |
| 85 | + `Robot Framework is open and extensible and can be integrated with virtually any other |
| 86 | + tool to create powerful and flexible automation solutions. Being open source also means |
| 87 | + that Robot Framework is free to use without licensing costs. Robot Framework has easy |
| 88 | + syntax, utilizing human-readable keywords. Its capabilities can be extended by libraries |
| 89 | + implemented with Python or Java.` |
| 90 | + }, |
| 91 | + community: { |
| 92 | + title: 'Community', |
| 93 | + body: |
| 94 | + `Robot Framework has a vibrant community around it with various online forums, annual |
| 95 | + RoboCon conference, and meetup groups around the world.` |
| 96 | + }, |
| 97 | + resources: { |
| 98 | + title: 'Resources', |
| 99 | + body: |
| 100 | + 'If you want to add your library here, make a PR.', |
| 101 | + tabs: [ |
| 102 | + { |
| 103 | + name: 'Libraries', |
| 104 | + contentKey: 'libraries', |
| 105 | + description: `Libraries provide the actual automation and testing capabilities to |
| 106 | + Robot Framework by providing keywords. Several standard libraries are bundled with |
| 107 | + the framework, and there are separately developed external libraries galore that |
| 108 | + can be installed based on your needs. Creating your own libraries is a breeze.` |
| 109 | + }, |
| 110 | + { |
| 111 | + name: 'Tools', |
| 112 | + contentKey: 'tools', |
| 113 | + description: `Supporting tools ease automation: editing, running, building and so on. |
| 114 | + Most of these tools are developed as separate projects, but some are built into the framework itself.` |
| 115 | + }, |
| 116 | + { |
| 117 | + name: 'Learning', |
| 118 | + contentKey: 'learning', |
| 119 | + description: `Want to get started? Looking for a way to do things? Here are the most |
| 120 | + important documentation resources needed to work with Robot Framework. Notice that |
| 121 | + individual libraries and tools in the ecosystem have their own documentation that |
| 122 | + is typically accessed via their project pages.` |
| 123 | + } |
| 124 | + ] |
| 125 | + } |
| 126 | +}) |
0 commit comments