8
votes
1answer
5k views

Needed advice to automate REST services test

I am kind of newbie to REST and testing dept. I needed to write automation scripts to test our REST services.We are planning to run these scripts from a Jenkins CI job regularly. I prefer writing ...
2
votes
2answers
741 views

Jython exception handling within loops

I am using Marathon 2.0b4 to automate tests for an application. A shortcoming of wait_p, one of the script elements provided by Marathon, is that its default timeout is hardcoded to be 60 seconds. I ...
2
votes
1answer
863 views

Multiple browsers in Selenium with Python

I am trying to test a chat application that need two different browser sessions. I tried this in the following way: Started Two different browsers, firefox and google chrome Tried to open the home ...
2
votes
3answers
245 views

sniffer can't find DJANGO_SETTINGS_MODULE

I'm trying to automate the test rerun after a change while developing. After searching around a little sniffer seemed fine. But if I run it my tests fail with this error: ERROR: Failure: ...
1
vote
1answer
78 views

Python Rope: How to Find all missing imports and errors in all sub modules refactoring

I am trying to find all missing import statements and errors for each module and its sub modules. Is there a dedicated tool for what I am trying to do? The code that I wrote, but seems really ...
1
vote
1answer
167 views

Using alert.accept() multiple times does not function properly

Hi I am currently new to being a Automated QA (in Splinter) tester using Python, What I want to do is to test a payment page to see if there are prompts if the required fields are empty and log it ...
0
votes
1answer
2k views

Selenium webdriver highlight element before clicking

I'm working on a set of selenium UI tests that are written in Python. On a previous project I was using WatiN and C#. The WatiN framework had a feature you could enable that would 'highlight' the ...
0
votes
1answer
492 views

Non-GUI Automated System Test Framework

I am looking for an automated test framework for testing a system with the following characteristics: 1. Non-GUI System 2. Has backend nodes running on multiple Linux/Unix hosts 3. Has remotely ...
0
votes
0answers
48 views

How to get values entered in a html textfield using python?

As of now I am using this line of code browser = Browser() #Test Validation def testValidationNum(): x = browser.find_by_id('company').value but I am getting an exception after using this ...