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

reduce the size of the selenium frame

I do I reduce the size of the selenium frame, in order to increase the frame of the website I am testing?
flybywire
  • 261,858
  • 191
  • 397
  • 503
2
votes
3 answers

How to make Selenium wait until the elements on the page are replaced (java)

For a graduation project, I am testing an online store using Selenium Webdriver and Java. I'm stuck in this part of the testing , where I have to check whether all search results (products) contains partucular word. My search returns several pages…
2
votes
0 answers

Free Record / Replay solution for j2ee EJB layer

I'm looking for a free (if possible) solution where: You can 'record' all the kinds of objects created during normal (production-like) usage of a webapp on an EJB application server (like Weblogic). Afterwards you can 'replay' each page…
ForestierSimon
  • 415
  • 4
  • 8
2
votes
2 answers

visual studio team suite : How to web test programmatically?

Good day, I'm new to Visual Studio 2005 Team Suite web testing. Here's the action i'm trying to achieve. On a webpage, I have a dropdownlist that is populated from a simple database table. In my tests, I want to click on each items of the…
Cedric Aube
  • 345
  • 4
  • 6
  • 13
2
votes
1 answer

Selenium python driver doesn't click or press the key for the button all the times

I'm using selenium to get to YouTube and write something on the search bar and then press the button or press the enter key. Both clicking or pressing a key does sometimes work, but sometimes it does not. I tried to wait with WebDriverWait, and I…
2
votes
0 answers

How to test server side rendered web applications?

I know some basic that Server-side rendering is the process of rendering the web page files from server and passing them to the browser (client-side) There is one website that has recently been implemented in server-side rendering, now speed for…
SaPu
  • 21
  • 1
2
votes
1 answer

Selenium Python: Actions.move_to_element not working

I am currently working on a selenium test to test some pagination buttons These buttons are outside the viewport of the screen... In firefox I can execute this code just fine (obviously with driver = webdriver.Firefox) from…
2
votes
3 answers

I want to make a simple redirect to a url from my website without session refresh

I have a variable with a url, $order_paypage_url = "example.com" I want to redirect from this to this url from website, I have tried this : header('Location: '.$order_paypage_url); exit; But when I run this session refreshes and the redirect does…
jojostev97
  • 104
  • 2
  • 8
2
votes
2 answers

If element present do stuff, if not present skip next

I am bumped in a situation where I need to do something if an element exists, and if that element does not exists I will need to skip to the rest of the code. I have tried several methods but I do not know why it does not work, the code looks…
Tardox
  • 69
  • 10
2
votes
1 answer

How can I make testRigor find these inputs?

I'm trying to make testRigor put some data into some inputs. The thing is that it has found some of them but some it has not found. Here I'll post an image where I show you the INPUTS testRigor has found and not found. How can I make it found the…
Stéfano Willig
  • 143
  • 1
  • 7
2
votes
2 answers

XPath containing 2 or more "OR" conditions not working?

There is an anchor tag, whose value can be changed by the user. Now, i want to write an Xpath query that searches for multiple link text names in one statement itself. Signin now, link text value can…
nick
  • 51
  • 5
2
votes
1 answer

Space between elements - is this making the code cleaner?

This is example code, not an actual project I'm working on: