Unanswered Questions
361 questions with no upvoted or accepted answers
5
votes
2
answers
382
views
What infrastructure is required for automated testing on a hosted desktop?
I've started investigating dogtail as a solution for writing GUI-driven unit tests in a GNOME Wayland session. Before I dive deeper I want to understand what I'll need to run these GUI-based tests on ...
5
votes
0
answers
1k
views
Karma/ Jasmine testing framework - tests don't appear to be executed
I am looking to implement the Karma/ Jasmine test suite/ framework for use with my AngularJS app.
Having never used a testing framework previously, I have followed the tutorial - to give it a go, ...
5
votes
2
answers
7k
views
How do I disable 'show all' download bar of chrome in selenium
I need to disable 'show all' download bar of chrome in selenium.
Because the download bar is showing, UI elements in the lower portion of my page that need to be clicked are not visible.
I'm looking ...
5
votes
0
answers
199
views
Is there a way to stop GridLauncher opening during testing on Mac?
Since moving from a Linux VM to a Macbook Pro for testing, I have been having a recurring issue running Protractor automation.
At a certain point in my suite all, a Java application called ...
5
votes
0
answers
130
views
How could aqString["Format"] in TestComplete suddenly change format when machine's local did not change?
When using this code:
aqString["Format"]("%.2f", numb);
the returned number used "," as a decimal point before - which is correct since I'm in Norway.
Suddenly - like a few days ago - it started to ...
5
votes
0
answers
151
views
weighing tools/approaches for testing of database components
Currently, the way we do this on LedgerSMB is to have SQL scripts which insert records into a test results table. This table is created in a transaction which runs the tests, and the tests always ...
5
votes
1
answer
191
views
Are there tools for Metamorphic Testing automation?
Reading about how to test an ML model, I've found the concept of "Metamorphic Testing" and this fits perfect on my project. Searching around Google I didn't find any Metamorphic Testing ...
5
votes
1
answer
873
views
Unable to launch Safari on iOS using Appium
I am automating some tests a real device (iOS) using Appium and Cucumber.
My idea is to do the following steps:
Open the app
Do some tasks
Launch Safari
Navigate to a website, lets say google.com for ...
4
votes
1
answer
835
views
How to add an assert to an if ..else condition using Phpunit and selenium webdriver
I'm working on test automation for a big project and I'm using Phpunit and as a server I'm using Selenium WebDriver.
In the source code I'm using asserts like :
$this->assertContains('Project Title'...
4
votes
1
answer
190
views
How to configure Phpunit.xml to use multiple browsers in Phpunit test with selenium webdriver
I'm working on automation test for a big project and I'm using Phpunit for functional test and as a server selenium webdriver.
I want to execute many tests using different browsers, I don't know what'...
4
votes
1
answer
2k
views
How to use multiple wait conditions in Selenium Webdriver using ruby?
I wanted to know, how I can use following waits in program at which situations?
driver.manage.timeouts.implicit_wait = 20
driver.manage.timeouts.script_timeout = 20
driver.manage.timeouts.page_load = ...
4
votes
0
answers
4k
views
Jenkins Build Is Hanging
We are using Jenkins for continuous integration. I have already created a Jenkins job for running all my robot framework automation test scripts & Everything was absolutely working fine.
But now,...
4
votes
0
answers
245
views
Using MonkeyTalk to test android app, the record button stays disabled
I am unable to record in MonkeyTalk, the record button stays disabled
I took the following steps:
Created a sample android project in eclipse
Created libs folder in the android project and copied ...
4
votes
1
answer
313
views
Getting and logging the selenium version used in a groovy project
I'm using Selenium in my Groovy application as a Maven dependency. Now I'm looking for a way to log the used Selenium Version to the console.
I tried this:
BuildInfo info = new BuildInfo();
def ...
3
votes
2
answers
136
views
How are you testing configuration changes?
I am curious if folks are testing configuration changes in applications. For example, I have a Spring Boot app that pulls its configurations from a local properties file at build time and from Spring ...