Questions tagged [autotest]

Autotest is a Ruby gem for running tests automatically when source files change.

272 questions
0
votes
2 answers

Selenium remotely download file in IE c#

I want to remotely run a download test under IE. I'm looking for any way to do it (on a remote machine) even if I have to use another tool such as autoit (which doesn't seems accurate regarding to the remote aspect). My problem : When IEWebdriver…
0
votes
1 answer

Sass is breaking Rspec (uninitialized constant Sass::Util (NameError))

When I try to run rspec or autotest I keep getting the error: /Users/Craig/.rvm/gems/ruby-1.9.2-p136/gems/sass-3.1.0.alpha.249/lib/sass/plugin.rb:35:in `': uninitialized constant Sass::Util (NameError) After I remove sass from my…
Craig
  • 540
  • 5
  • 14
0
votes
0 answers

pyautogui.screenshot() at the same screen with diferent pixels

I use pyautogui to write the auto-gui test tool for Debian9 desktop application written by Qt5.9.2. The background of application was filled with many PNG images by qss. I capture the screenshot by pyautogui.screenshot() and compare the pixels by…
sfzhang
  • 669
  • 9
  • 18
0
votes
1 answer

Application launch without elements

When I starting application without appium I get this form: When I use appium for application launching elements are disappearing: Anybody know why it happens? Java code: String appPackage = "appPName"; String appActivity = "appAName"; …
Horman Lewis
  • 346
  • 2
  • 5
  • 13
0
votes
1 answer

Autotest notifications on Ubuntu virtual environment

I am having trouble getting Rails autotest notifications to work on the Engine Yard Vagrant environment. On the Mac, I normally get the notifications via Growl. However, on the virtual environment (which runs Ubuntu) that doesn't work. I tried…
Luciano
  • 825
  • 1
  • 7
  • 10
0
votes
2 answers

Can I Get Access Token on Azure without registering my autotesting app?

I write API autotests (using C#, HttpClient) for application deployed on azure. There were added authorizations - Authentication with Azure Active Directory and JWT Authorization using the Bearer scheme. Of course all my tests now fail with 401…
SerhiiBond
  • 247
  • 3
  • 8
0
votes
0 answers

Cucumber autotest cant find elements via Jenkins

have problems with my java tests on Cucumber when i run them via jenkins on remote host. My code: step: Given open link from property "bla-blalink" And type to input with name "UserName" property: "login" on…
0
votes
1 answer

Why don't spec/controller/pages_controller_spec.rb tests get triggered when I modify html.erb pages?

Summary of question: Is autotest supposed to 'trigger' any of my /pages_controller_spec.rb tests when I change any of the pages referenced in the file? Example: I have a test in the spec/controller/pages_controller_spec.rb file that tests for the…
Sean
  • 1
0
votes
1 answer

How to implement a server for a python scripts testing system (with stdio)?

Could you advice how to implement server for scripts testing such as like on coursera. There is input, where students attach their script. And next steps are quite foggy for me as I see them: server gets script server checks extension of…
0
votes
1 answer

Autotest not testing

Autotest doesn't seem to be working for me. I've installed what seem to be all the dependencies. When I make changes in my code, or force failures in tests, nothing happens while running autotest. When I run autotest either just as 'autotest' or…
0
votes
2 answers

Tell Autotest to run every time I changed models/controllers/helpers in Rails 3?

I would like to tell autotest to run every time I changed models/controllers/helpers in my rails 3. Currently, it runs only when I changed spec files. Here is my environments: rails (3.0.3) rspec-rails (2.4.1) autotest (4.4.6) autotest-notification…
Samnang
  • 5,536
  • 6
  • 35
  • 47
0
votes
1 answer

How to add colors in autotest for rspec?

So I have these gems for dev: gem 'autotest' gem 'ZenTest' gem 'autotest-growl' In my .autotest file: require 'active_support' require 'active_support/core_ext' require 'autotest/restart' require 'redgreen/autotest' begin require…
0
votes
1 answer

Working with objects in a calabash-cucumber

In the process of studying calabash-cucumber for testing mobile applications, the question arose how to work with objects. For testing took the application iOS, and here is one of the Activites has 4 questions and 3 answers to each question. To pass…
0
votes
1 answer

Tell autotest to run when view file is modified

How do I change the behavior of autotest to run after I edit a view file? Currently, it runs when I modify a a controller file, and I'd rather not need to touch a a controller file to get my tests to run.
David Oneill
  • 12,502
  • 16
  • 58
  • 70
0
votes
2 answers

Rspec2, Rails3, Authlogic: Can't run specs

When I do rspec spec in my rails project, I get No examples were matched. Perhaps {:if=>#,…
Sam
  • 1,246
  • 1
  • 19
  • 27