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
4
votes
2 answers

how to login into website using java code?

I want to write code for login to websites with java. Here is the code : package login; import java.net.*; import java.io.*; public class ConnectToURL { // Variables to hold the URL object and its connection to that URL. private static…
Ys3
  • 79
  • 1
  • 2
  • 7
4
votes
1 answer

Web Test recorder is disabled in IE11, Win7

I am trying to record a web performance test using the web test recorder 14 plugin in the explorer 11. I have the exact same problem as described in this very similar post, which unfortunately does not solve the problem for me. I did the following…
Alex
  • 41,580
  • 88
  • 260
  • 469
4
votes
4 answers

Replacement for JWebUnit / HttpUnit

We've used both JWebUnit and HttpUnit in the past to do functional tests of web applications. Both of them seem to have issues in handling javascript. We are not particularly interested in testing the javascript at this point, but JWebUnit and…
Paul Croarkin
  • 14,496
  • 14
  • 79
  • 118
4
votes
1 answer

Visual Studio Performance Coded UI - Popup Window broken, Because Web Test Recorder is causing it to open in a full window

I have ASP.net webform that opens a popup window. example window.open(""); The POPUP window closes itself when a hyperlink is clicked inside. [Like search for person by name, select person and pass the person back to the parent form.] Then posts…
4
votes
1 answer

Why am I getting "event.returnValue is deprecated..." and how can I rectify it?

In my web site, when I F12 from the browser, I see in the console (Chrome Dev Tools) the error/warning, "event.returnValue is deprecated. Please use the standard event.preventDefault() instead." Yet I search my project for "event.returnValue" and it…
B. Clay Shannon-B. Crow Raven
  • 8,547
  • 144
  • 472
  • 862
4
votes
1 answer

CSS selector for div while using selenium webdriver and ruby

I have worked on CSS selectors to find an element while using selenium webdriver, but finding the element for below div seems to be difficult.
tech_human
  • 6,592
  • 16
  • 65
  • 107
4
votes
3 answers

Online playground to test and compile Underscore templates?

Is there any online site where we can play around with Underscore or Handlebar templates online without needing to download anything?
udnisap
  • 899
  • 1
  • 10
  • 19
4
votes
3 answers

How to use xip.io with several virtualhosts and server names? (local dev)

Is it possible to use xip.io to access local website when using virtualhosts with different server names? (I'm on linux, fedora). For instance, let's say I have 3 websites I can access locally like so: - http://localsite1 - http://localsite2 -…
edDraw
  • 133
  • 2
  • 7
3
votes
4 answers

"Art of Test" for C# Automated Web Testing in CruiseControl.NET

We currently use SWEA (http://webiussoft.com) to run automated tests of the site during our CruiseControl.NET overnight builds. We are looking for a more robust solution and we are looking at the "Art of Test" (http://www.artoftest.com)…
Bigwave
  • 2,166
  • 1
  • 17
  • 28
3
votes
3 answers

Can't seem to be able to bypass this error - "element not interactable"

So all I want to do is automate a login through WebdriverIO. This is the LoginPage class where the error occurs, login function - "element not interactable" class LoginPage { get inputUsername() { const username = $("#username"); …
3
votes
1 answer

Selenium Driver is one page behind ajax call after large json data download

I have a code like this driver.find_element_by_xpath("//div[@aria-rowindex=7][@aria-colindex=10]//child::span[1]").click() #click will take me to a new ajax page - no change in url driver.implicitly_wait(60) time.sleep(160) #without this the below…
3
votes
1 answer

Can I access a DOM object with Selenium?

I am coming from a QuickTest Pro background where I can get to any element's DOM object with the .object method. I want to know what the equivalent is in Selenium RC.
paperhat
  • 133
  • 2
  • 7
3
votes
0 answers

Gatsby having slow interactive and delay response

I've been looking the answer why website https://7starscustom.id has slow response, the pagespeed shows i had 5 secs interactive, but it's really slow when i tried to open for the first time (using private/incgonito) before the website caching. if…
3
votes
1 answer

Feedback of test runs in Testcafe

If I run a bunch of tests inside Testcafe, it may need a couple of times. Is it possible to add a function/callback to get the current test/step that Testcafe is processing?
ingo
  • 776
  • 1
  • 10
  • 25
3
votes
1 answer

TestCafe runs tests twice

I am using TestCafe for some time now and never had a problem. A few days ago TestCafe started to run my tests twice, producing a lot of problems. I couldn't find the issue on https://github.com/DevExpress/testcafe/issues and wanted to ask if anyone…