WebTest helps you test your WSGI-based web applications, which includes most actively developed Python web frameworks.

learn more… | top users | synonyms

0
votes
0answers
15 views

canoo webtest works on linux, fails on windows

I encounter a rather strange behaviour: If I run my canoo webtests by using "mvn clean install" on a linux machine, everything is okay. If I do the same on Windows, some test fail :-( Quite annoying ...
0
votes
0answers
11 views

Sonar plugin for Canoo Webtest

I have been using Sonar as a tool to support quality assurance for my Maven project. For integration testing I am using the (Canoo) Webtest Maven Plugin. The Jenking job is running the Maven build ...
0
votes
0answers
19 views

a way to turn off report generation for canoo webtest

I am running canoo webtest against a suite with over 1000 tests. The entire process is taking a little longer than I would like. My question is: Is there a way to turn off the html report generation ...
1
vote
0answers
85 views

SignalR Persistent Connection in a coded Webtest

I have the following code in a console app: var connection = new Connection("http://localhost/xxx/signalr"); connection.Error += ex => { string msg = string.Format("***SignalR Error: {0}", ...
1
vote
1answer
131 views

Functional testing with Python WebTest

I am totally new to functional testing with using Python WebTest, please bear with me I was looking at https://webtest.readthedocs.org/en/latest/webtest.html, so I tried out the code as suggested to ...
0
votes
1answer
99 views

django-webtest, user authentication and view decorators

I'm using django-webtest (v1.5.6) to test a decorator is limiting access to a view to authenticated users. My view is simply: @active_account_required def homepage(request): return ...
2
votes
1answer
72 views

WebTest for SignalR possible?

if I send a request, and I expect the response to come trough SignalR, is it possible to test this using a LoadTest or PerformanceTest in Visual Studio?
0
votes
1answer
73 views

Exactly how do Visual Studio 2010 Data Sources behave when Access Method is “Random”?

In Visual Studio 2010, if you bind a Data Source to a Web Performance Test you have the option of setting the Access Methods to "Random", defined as follows: Move randomly through the rows in a ...
0
votes
0answers
91 views

Jenkins Maven Build and Canoo Webtest

I use Canoo webtest to test part of my web application. I have configured maven to that it automatically runs the webtest plugins as part of the integration-test phase: <plugin> ...
0
votes
1answer
58 views

canoo webtest json

I'm trying to test my rest services on Jboss 7.1 with canoo webtest. Below is the request. I'm not able to pass the json content to the server. However the same works with curl scripts. When i print ...
1
vote
1answer
119 views

WebTests in VS2012 not running

We use VS Ultimate for web tests and load tests, but since moving to VS 2012 from VS 2010, the web tests don't seem to run anymore. We used to be able to do ctrl-r ctrl-t to debug specific tests, but ...
2
votes
2answers
78 views

Abort a webtest if an error occurs

Using VS2010's load test feature with recorded webtests. I have problems with cascading errors in my recorded webtests. That is, if one request fails, several other requests will also fail. This ...
0
votes
1answer
39 views

Think Time in Visual Studio Test Project

We have a requirement as below: We need to test N number of load of users for a single page aspx web application. If 100 load users we don't want 100 users to hit the web site concurrently. I've ...
1
vote
0answers
76 views

Testing cherrypy applications using Webtest and nose?

How to test a cherrypy application with json interface widely with nose and webtest using WSGI interface? any example will be appreciated.
2
votes
1answer
113 views

Testing Image upload with Django and Webtest

Does anyone know how I can test the image upload with using WebTest. My current code is: form['avatar'] =('avatar', os.path.join(settings.PROJECT_PATH, 'static', 'img', 'avatar.png')) res = ...
2
votes
0answers
80 views

Finding the real error in a Webtest test failure

I'm using Python + Webtest to test a WSGI app, and I find that exceptions raised in the handler code tend to be swallowed by Webtest, which then raises a generic AppError: Bad response: 500 Internal ...
0
votes
1answer
76 views

django-webtest Testing URLs on a page

How to get a list of all links on a page using django-webtest? In my case, i want to test that users have appropriate urls on a page, according to their permissions.
0
votes
1answer
168 views

Grails Canoo Webtest plugin: invoke() fails to send JSON data in POST request

I'm evaluating Canoo Webtest for automated integration/functional testing as a Grails plugin. I have a REST app which I'm attempting to test, but Canoo Webtest doesn't seem to properly send the JSON ...
0
votes
1answer
80 views

How to simulate a user with certain permissions using WebTest

I'm testing my views and would like to simulate logged in user with certain permissions. I know that in django-webtest I can simulate logged in user like this: self.app.get(reverse('profile'), ...
0
votes
1answer
69 views

What is the best way to search inside base64 strings?

I am using Visual Studio 2010, Web test project. A web request has a property of html body which is encoded to base64 when it is saved to file system. The problem is when I am trying to search for ...
0
votes
1answer
76 views

Enum in custom web test validation dule

I'm building a Web Test using Microsoft VS2010. I used the explanation on MSDN: How to: Create a Custom Validation Rule for a Web Performance Test. In the example there using string and int as private ...
5
votes
1answer
178 views

Issue with nosetests and file uploads

I've been searching the web for the last two days trying to understand the problem I'm having with WebTest. However, I have had no joy, and was wondering if anyone here might be able to help. I'm ...
1
vote
1answer
269 views

How to bind extracted parameters in WebTest VS2010

I am using VS2010 WebTest to inovoke a list of WCF operations in sequence. First call is to obtain a session token from the server. This token has to be passed as request element to all subsequent ...
0
votes
0answers
86 views

Is there a way to add the QueryStringParameters to the ExpectedResponseURL for validation long URL strings?

I am using Visual Studio 2012 to run Load Tests using scripts that I recorded in WebTest, for the most part his has worked but some recent issues uncovered an issue with the IIS threads that required ...
3
votes
3answers
303 views

Is there any alternative for selenium?

I wrote tests for testing a web-site using Selenium а web driver. When I use Firefox a web driver there are no problems, but I must use IE а web driver and there are problems with it. I read many ...
0
votes
0answers
47 views

jwebunit selectOptionByValue slow

I'm writing a web test to automate an irritating test data creation procedure. It involves filling around 250 fields on one particular page, and I'm using the built-in WebTester method to set these ...
0
votes
1answer
259 views

Django unittest and selenium

Thre are 2 tests: one is testing index page with WebTest, another is testing admin page with Selenium LiveServerTestCase. When i comment one of the tests, another works, but if both are uncommented, ...
0
votes
0answers
129 views

Running Canoo Webtest using Groovy

Does any know how to get the sample groovy webtest from the canoo webtest website working: import com.canoo.webtest.WebtestCase class SimpleTest extends WebtestCase { void testWebtestOnGoogle() { ...
0
votes
0answers
71 views

Canoo webtest <project default=___> - meaning?

I can't find an explanation of what the "default=__" part of the project tag is in Canoo Webtest (on the site or elsewhere). On this* page, it's showing up as a few different things (wt.full, all, ...
0
votes
0answers
193 views

Webtest not passing cookies up to server

I have a web test in Visual Studio 2010 Ultimate, and I see the cookie being set in the initial log in like it is supposed to be with the Set-Cookie in the response, but in subsequent responses no ...
0
votes
1answer
60 views

Accessing the information contained in the .webtestResult files in code

I'd like to programmatically retrieve information related to test results. After a test run, I want to go through the test results and, for each test failed, to get the name of the failed test, the ...
0
votes
1answer
323 views

Selenium: difference between “role hub” and “role webdriver”?

I'm using Selenium for automated testing. What's the difference between java -jar selenium-server-standalone-2.24.1.jar -role hub and java -jar selenium-server-standalone-2.24.1.jar -role ...
0
votes
1answer
139 views

ITestCaseResult.Iterations.Count returns 0 for a test with iterations

I have a couple of simple web tests that use data sources. Each web test contains only one request. After they run it's pretty hard to detect why they failed, given that they are quite a few (80) and ...
0
votes
2answers
101 views

How to test webpages in java?

I have to test content of webpages . My mentor says to use selenium . I looked up and found it is tool used for testing and thought that 'll do .I tried Selenium IDE and found it repeat our action in ...
0
votes
1answer
212 views

Is it possible to persist WebTestContext across ASP.NET load test session?

I want to load test an enterprise Web application (which I did not build), using a Visual Studio 2010 Ultimate Load Test. I want each virtual user to log in at the beginning, and log out at the end ...
0
votes
0answers
260 views

Run multiple versions of google chrome on Vista

I would like to run several versions of Google Chrome for testing purposes. I followed this guide: Cross-browser testing: All major browsers on ONE machine It works well on XP but not on Vista or ...
0
votes
0answers
31 views

Test Project Error: the test could not be run because of the following exception exception has been thrown

I am using VSTS 2008 and trying to create a web test. When I stop recording web test, I get this messagebox saying : the test could not be run because of the following exception exception has been ...
0
votes
0answers
227 views

Open an url failed, error message: The interface is unknown. (Exception from HRESULT: 0x800706B5)Interop.SHDocVw

I'm doing web test with WatiN and Nunit, when i try to open an url and log on. the following error interrupt me: ...
0
votes
1answer
80 views

Web Test Conditional Flow

I have created a webtest which is a series of web service requests. My data source contains a list of mobile numbers and these mobile numbers can be of two types - A and B. The problem is that data ...
0
votes
2answers
172 views

How can I emulate an HTTPS request under WebTest?

I have a Pyramid app that locks down certain functionality to HTTPS connections. The server is fronted by nginx (usually) and I use PasteDeploy to detect the HTTPS connection. From my ...
0
votes
1answer
111 views

Web test details are not displayed when ran from an ordered test

I have an ordered test that contains 4 web tests. The problem is that Visual Studio seems to have a problem loading the test results for an individual test. I included a screenshot to supplement for ...
0
votes
0answers
377 views

How can I change the parameter values of the query string in load tests? [closed]

I'm new to load testing using Visual Studio 2010. I've got like 10 URLs to be visited, each with a value to be passed in the query string. I was able to create a web performance test and a load test ...
0
votes
2answers
1k views

Web Performance Test that requires login: How do you make it work in isolation and in load test?

I have a Visual Studio 2010 Load test, which contains a number of web performance tests. Running the web performance tests requires you to be logged in to the website under test. Accordingly, the ...
1
vote
1answer
490 views

VSTS Web Performance Test - AJAX requests recorded in wrong order?

I'm new to using VSTS and I'm trying to create some web tests to form a load test for an ASP.NET WebForms app I've inherited. The site heavily uses 'AJAX Pro', an AJAX framework that was about ...
0
votes
1answer
379 views

Viewstate corruption with VS2010 Web Performance Tests

When running one of my Visual Studio web performance tests, I noticed intermittent exceptions when trying to decode viewstate: Message: Invalid length for a Base-64 char array. Call Stack: at ...
2
votes
3answers
290 views

How do I get the user in Djano test?

I have some external services. My Django app is built on top of my external service APIs. In order to talk to my external service, I have to pass in an auth cookies, which I can get by reading User ...
1
vote
0answers
80 views

Visual Studio 11 Web Test with different paths

I'm trying to create a Web test in Visual Studio 11 beta. The problem is that the app can randomly serve different pages to the user (something like an A/B test). That is user journey can be pages: ...
0
votes
2answers
143 views

How to click on anchor <a> tag from Canoo webtest?

Our team replaced a submit button with the following anchor tag: <a class="l-btn" onclick="onFormSubmit(this.form)" Style="width: 80px; text-align:center;"> <span class="l-btn-left"> ...
0
votes
0answers
140 views

One time login /logout in webtests

I am using selenium 2.20.0 for my JSF/Primefaces webtest. I have currently 40-50 webtest for my webapp. Currently before each webtest case I am login and after i am logout. This take very long time ...
1
vote
1answer
2k views

mimic 'Enter' Key press in Webtest using Selenium

I want to mimic Enter being pressed in Webtest. I am using Selenium 2.3.1. I want to do it using WebDriver. I know that we can do this using Selenium RC, but I do not want to do it that way. Has ...

1 2 3