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
92
votes
11 answers

Any suggestions for testing extjs code in a browser, preferably with selenium?

We've been using selenium with great success to handle high-level website testing (in addition to extensive python doctests at a module level). However now we're using extjs for a lot of pages and its proving difficult to incorporate Selenium tests…
mm2001
  • 6,427
  • 5
  • 39
  • 37
71
votes
2 answers

What is Google Web Driver in the Android SDK Manager?

I see a list of optional items to install in the packages window, and can't find any reference to what the Google Web Driver and what it actually does?
fakeguybrushthreepwood
  • 2,983
  • 7
  • 37
  • 53
47
votes
6 answers

Rspec - Rails - How to follow a redirect

Does anyone know how to make rspec follow a redirect (in a controller spec)? (e.g test/unit has follow_redirect!) I have tried "follow_redirect!" and "follow_redirect" but only get undefined method `follow_redirect!' for…
Jonas Söderström
  • 4,856
  • 2
  • 36
  • 45
35
votes
4 answers

Web Testing for IE. How accurate is IETester?

I am using IETester for testing web sites with IE. I find it quite frustrating that it crashes frequently. More importantly, it does not seem to be too reliable. Sometimes, a site looks broken in IETester's IE8 but looks fine in real IE8. (I suspect…
Jiew Meng
  • 84,767
  • 185
  • 495
  • 805
33
votes
4 answers

Is there a good IE-based Selenium IDE?

The SeleniumIDE project is based on Firefox (and its plugin architecture). My application (for a variety of reasons) only runs on Internet Explorer (6+). In fact, we actively check for non-IE browsers and do an immediate redirect. This is a 6…
Jay Stevens
  • 5,863
  • 9
  • 44
  • 67
29
votes
3 answers

Is there a way to install/emulate an older version of Safari ? (i.e 8)

On OSX: After an update to El Capitan, I found that Safari 9 was installed by default. For software testing purposes, I need to test a web app through Safari 8 (which is still the latest version in Yosemite). I searched but there is no way (expect…
Moncefmd
  • 343
  • 1
  • 4
  • 9
28
votes
4 answers

Use request value from list of values in JMeter

I'm sure I've already done this in the past but somehow I cannot figure out how ;-) So, here's my problem: I'm trying to create a JUnit test plan in which a HTTP request is modified each iteration by altering a specific parameter. So, for example…
Christian Seifert
  • 2,780
  • 5
  • 29
  • 45
26
votes
8 answers

Use Selenium with Chromium Browser

In the Selenium options (on Firefox) I can find Custom browser. Is it possible to use this option to run a Selenium test in Chromium Browser (not Chrome)?
RusAlex
  • 8,245
  • 6
  • 36
  • 44
25
votes
2 answers

Can I use pagespeed insights for my local host website or offline?

Can I use pagespeed insights for my localhost website or offline?
Kishor
  • 502
  • 1
  • 5
  • 12
20
votes
6 answers

Integrating Automated Web Testing Into Build Process

I'm looking for suggestions to improve the process of automating functional testing of a website. Here's what I've tried in the past. I used to have a test project using WATIN. You effectively write what look like "unit tests" and use WATIN to…
Haacked
  • 58,045
  • 14
  • 90
  • 114
18
votes
4 answers

How to use Selenium with PHP?

I'd like to use Selenium to automate a few web tasks (not for testing). I think I have Selenium RC Server installed, but have no way of writing "test scripts" since I can't find a client driver in PHP (see: http://seleniumhq.org/download/). Is…
StackOverflowNewbie
  • 39,403
  • 111
  • 277
  • 441
15
votes
3 answers

Is drag-and-drop possible in watir-webdriver?

I would like to drag-and-drop one element to the position of another, triggered from within a watir-webdriver script. By "drag-and-drop" I mean picking up a draggable element and releasing it on another. By "possible" I mean any method for drag/drop…
kinofrost
  • 768
  • 6
  • 16
15
votes
15 answers

I am trying to open Jmeter by the batch file but it gives me a Windows error

Here is the related error its showing: java.exe is not a recognized file as an internal or external command, operable or external command errorlevel=9009
som
  • 161
  • 1
  • 1
  • 3
13
votes
1 answer

How to run Jest-Puppeteer test in multiple files

I am using jest-puppeteer to run my webtests. If I am running my tests all defined in one file, everything works perfectly. describe('user', () => { jest.setTimeout(12000); beforeEach(async () => { await page.setViewport({width:…
Stefan
  • 1,590
  • 3
  • 18
  • 33
13
votes
1 answer

How to download an entire website given a domain name

Some Context After fixing the code of a website to use a CDN (rewriting all the URLs to images, JavaScript & CSS), I need to test all the pages on the domain to make sure all the resources are fetched from the CDN. All the sites pages are accessible…
SimonW
  • 6,175
  • 4
  • 33
  • 39
1
2 3
48 49