Questions tagged [web-testing]

Software testing that focuses on web applications. Before the system becomes public, complete testing of a web-based system can help to address issues.

Software testing that focuses on web applications. Before the system becomes public, complete testing of a web-based system can help to address issues.

731 questions
3
votes
1 answer

Remove Cookies in Visual Studio WebTest

I want Remove Cookies of application in visual studio webtest how can i do it ? this is one of my WebTestRequest WebTestRequest request = new WebTestRequest( DataProvider.Data.OnlineServer + "/Auth/Login" ); request.Method =…
arash
  • 61
  • 1
  • 6
3
votes
1 answer

Avoid browser cache loading if website updated

How to avoid website loading from cache if i have done changes in html or css file. While browsing i gone through this question How to avoid browser caching issues by renaming css file But it give solution only for css not for html changes... Please…
Monicka Akilan
  • 1,501
  • 5
  • 19
  • 42
3
votes
3 answers

Automatic testing of web pages (and generating from use cases by DSL)

My goal is: Our customers could generate new web-tests. Our continuous integration server makes a test-environment deployment; it should execute the tests against it The test could also be run against some other environment. (Final acceptance…
Tuomas Hietanen
  • 4,650
  • 2
  • 35
  • 43
3
votes
1 answer

Extraction Rule configuration in Visual Studio 2013 web performance tests

I've been following this guide to create my web performance tests in VS 2013 and I found interesting thing, which I am not sure how to understand. I have a web application. On certain request this application returns me a page, where I have a span…
user2060111
3
votes
1 answer

What is needed to execute visual studio 2005 web tests?

Our test department has a series of web tests created using Visual Studio 2005 Team Tester Edition. I would like to be able to execute these tests against my local machine. I attempted to use the mstest command line tool to accomplish this as…
NotMyself
  • 29,209
  • 17
  • 56
  • 74
3
votes
0 answers

CasperjsJS How to setup test suite with dependent test cases

How would I create a test suite where I have a test case that is dependent on a previous test case to start? Example: Test 1 Login with user X Test 2 My account page (Comes after user logged in) Test 3 "Follow up with other tests with the same user,…
nelsiki
  • 31
  • 2
3
votes
2 answers

Page Object Pattern Implementation with CasperJS

Is there anyone who have already implemented the famous "Page Object Pattern" with casperjs, it's very useful for test maintainability in the long term ? It's very very cool to use that when you have to separate the mechanics and the purpose of your…
Brice LALU
  • 173
  • 1
  • 7
3
votes
1 answer

"Choose File" not work for firefox while it works for chrome

I am using robotframework ,selenium2Library, selenium2 and python27 to test web program. It need to upload a file in my web program. I use Choose File to give file path value to input filed. But it is not work for firefox and it works fine in…
3
votes
2 answers

Can I use Webrat for ASP.NET applications?

Does Webrat require that the web application be written in Ruby/Rails? I'd like to try it for writing tests against an ASP.NET web application.
Randy Eppinger
  • 1,054
  • 13
  • 23
3
votes
2 answers

Best HTTP Request analyzer

I want to analyze the HTTP Requests generated when I am interacting with a web application through my browser. Can anyone suggest a tool that I can use to see the outgoing Http Requests from my browser? I want to see the entire Http Request, not…
Sumair Sohail
  • 43
  • 1
  • 4
3
votes
2 answers

WebTest working but LoadTest not

I created a Web Performance Test for a site which seems to be working fine. It's a simple test for logging in and testing the navigation. Running that test solely works every time. But the problem shows up when I call that test in in a LoadTest. So,…
kalbsschnitzel
  • 817
  • 1
  • 8
  • 29
3
votes
2 answers

Handler testing in App Engine fails: webtest import errors

I can't make any sense of this error: ====================================================================== ERROR: test_webtest…
Chris
  • 6,805
  • 3
  • 35
  • 50
3
votes
1 answer

Why isn't there a headless BDD testing engine like ruby's capybara for java?

Why isn't there a java version of ruby's capaybara ( https://github.com/jnicklas/capybara ) that would work with tomcat or something? I know we have selenium but it is very slow and it requires a browser to fireup. Is there a technical reason for…
loyalflow
  • 14,275
  • 27
  • 107
  • 168
3
votes
1 answer

Approach for Watir-Webdriver coverage on site with many clients

Ok, I need a boost on this thought process - my brain hurts. I'd like to get your feedback on some approaches. I'll post my questions up front just in case I lose your attention during the description below: Have you scripted a similar product…
adam reed
  • 2,024
  • 18
  • 24
2
votes
1 answer

How to run a windmill test script

I have recorded some interactions with windmill and when I hit save I get the following (python) script: # Generated by the windmill services transformer from windmill.authoring import WindmillTestClient def test_recordingSuite0(): client =…
mkn
  • 12,024
  • 17
  • 49
  • 62