Questions tagged [robotframework-swinglibrary]

SwingLibrary is a Robot Framework test library for testing Java Swing user interfaces.

SwingLibrary is a Robot Framework test library, it uses a tool called Jemmy internally to operate on Swing components.

Following Wiki pages contain helpful information:

  • Getting Started describes the setup and basic steps necessary to start using the library.
  • SwingLibrary Demo contains a simple test application and an example test case that can be tweaked to get familiar with the library.
  • Library Documentation contains some general information and documentation of all keywords contained in SwingLibrary
  • Extending SwingLibrary describes how to extend SwingLibrary, for example to add support for custom components.
4 questions
1
vote
0 answers

How to install Swing library for Python based robot framework in Windows?

I am new to Robot framework. I use sample GUI application from swinglibrary-1.5.1.jar. java -cp swinglibrary-1.5.1 org.robotframework.swing.testapp.examplesut.TodoListApplication For that I need to install Swing library in my PC. Can anybody help…
Stéphane GRILLON
  • 11,140
  • 10
  • 85
  • 154
0
votes
0 answers

How to select a part of xpath and assign it to a variable

how to get only the token of this xpath, and store it in a variable so that I can use it in another step //div[@class='s-stack s-mailbody'][contains(.,'Codigo de autorizacao: **820139**')] I would just need the numbers nothing yet. I'm hoping to be…
0
votes
1 answer

can't able to get the text from the html table using robot framework

Here is my code:
0
votes
1 answer

Run Keyword In Separate Thread keyword not found even though it's in the script

I have a robot script with the following keywords: Enter New Data Group SelectDialog New Data Group Button Should Be Disabled okButton Type Into Text Field nameTextField EnteredByRF1 Type Into Text Field descriptionTextArea …
user3073772