Questions tagged [browser-testing]
89 questions
1
vote
3 answers
Can JUnit be used as an alternative to browser testing in Spring?
I'm building a Spring web app and up until now all of my testing is using a browser.
This involves starting the server, opening a browser window and checking to see if accessing any of the pages causes an error.
This is starting to get repetitive…

LowFatTwinkie
- 1,003
- 1
- 8
- 10
1
vote
1 answer
Python: actually accessible file upload in splinter?
I have a web application that lets the user upload an XML-style file and then modify it in the browser.
I am trying to test the scenario with splinter. Provided I have the correct input (id="form-widgets-body"):
...I can find it no problem, as…

norman
- 5,128
- 13
- 44
- 75
1
vote
2 answers
Testing IE 10 in Microsoft remote desktop on mac?
I'm using Microsoft Remote Desktop App on my Mac which is connected to my microsoft account in order to test for "IE Technical Preview" which is IE11.
Is it possible to test for IE10 with this App as well?
Kind Regards,
Matt

matt
- 42,713
- 103
- 264
- 397
1
vote
2 answers
My thoughts for Selenium WebDriver with cross browser testing
Recently in my company we had cross browser testing on very big application. We have prepared selenium webdriver script for functional regression testing, however, there is not more scope covered for cross browser testing and that made us to test…

Karim Narsindani
- 434
- 3
- 14
- 38
1
vote
1 answer
When should test.done() be called in CasperJS?
I'm using casper tester module, and I had this structure:
casper.start();
...(various then() and wait() calls)
casper.then(function(){
test.done();
});
casper.run();
Doing it that way appeared to work fine (except for an intermittent timer…

Darren Cook
- 27,837
- 13
- 117
- 217
1
vote
1 answer
Can I use Selenium's send_keys or some other function to send actual keys rather than characters?
I am using Cucumber and Selenium to test typing in a contenteditable div. (Wikipedia's new VisualEditor, if you're curious.)
This is how the current code looks, more or less:
When(/^I type (.+)$/) do |text|
…

Amir E. Aharoni
- 1,308
- 2
- 13
- 25
1
vote
0 answers
CSS triangle up and down have different alignment in Firefox
I'm trying to make an image-less icon for a drop down menu using CSS triangles that point up and down. Code looks like this: http://jsfiddle.net/FGrR2/6/
.d, .u {
float: left;
clear: left;
width: 0px;
height: 0px;
border-style: solid;
…

fien
- 13
- 5
1
vote
1 answer
Windmill-Without web browser
In selenium testing, there is htmlunitdriver which you can run tests without browser with. I need to do this with windmill too. Is there a way to do this in windmill?
Thank!

Ahmet DAL
- 4,445
- 9
- 47
- 71
1
vote
1 answer
Browserstack.com ignoring X-UA-Compatible while testing for IE6-8?
While testing my site (www.luchtspin.nl) with the Utilu IE Collection (IE6-8 - http://utilu.com/IECollection) the results are fine. But as soon as I doublecheck my site via Browserstack.com, 'X-UA-Compatible' seems to be ignored.
Is this correct,…

jelu
- 57
- 7
0
votes
0 answers
Selenoid browser session not getting created
I have successfully installed Selenoid on my Mac and can view the ui, but when I try run the tests I get "Requested environment is not available" error and I even can't create the sessions manually
ui screenshot
I have the browsers.json file in…

NeginM
- 1
- 1
0
votes
1 answer
Custom wait in Testcafe
While testing web application(next.js) with the menu on the left and functionalities like notifications at the top I experienced the problem with clicking on the dropdown button.
Steps:
Robot clicks the button from the lef menu
When the subpage…

larry
- 1
- 1
- 2
0
votes
0 answers
Mocking browser download functionality
I have a React component which internally creates a script DOM element. There is a bunch of logic around handling onload and onerror events of this script. The onload and onerror handlers are internal to the component, and I can't pass them via…

HIT_girl
- 785
- 7
- 23
0
votes
1 answer
How to open chromium with half of screen-width and aligned to right screen-border?
I would like to set the window-position within the total available screen, so it takes up half of the screen-size and is positioned at the right end of the screen with its right border. Couldn't find any docs about it, maybe it's not possible?

Ida
- 3,994
- 21
- 40
0
votes
1 answer
Fitnesse Ignore result of method
I am trying to run this fixture code:
|script |Browser Test |
|open |https://jsfiddle.net/ygjL7hnm/3/show|
|click |Run this fiddle |
|click if available|id=test …

marc
- 29
- 5
0
votes
2 answers
Laravel dusk with browserstack to run tests on multiple devices and browsers
I am using this ("browserstack/browserstack-local": "^1.1") package to run dusk tests on BrowserStack. Now the requirement is to run tests on multiple and different devices with different browsers. Currently, I am following this approach to run…

Hassan Hafeez
- 3
- 3