Questions tagged [expresso]

Ultrapico .NET regex editor

Expresso is an Ultrapico .NET regex development and testing tool distributed free of charge (a free registration is required after the first month of usage). It features a powerful regex editor suitable as a self-study tool for beginners and as a full-featured development environment for the experienced programmers with an profound knowledge of regular expressions. Besides, there are such features as .NET code generation, benchmarking, and a local regex library.

40 questions
0
votes
1 answer

Testing searchview in android - Instrumentation testing

I have a searchview in my action bar, where I can press on search button in action bar, write some text, then click on the search button on softkeyboard and then it should display the list of results in recycler view. I want to test this to see if…
Sushil
  • 8,250
  • 3
  • 39
  • 71
0
votes
1 answer

Android Expresso - wait for async task to finish

I have a number of screens with a spinner on the actionbar. When the user changes the spinner option, the list below refreshes with the appropriate data. The activity spawns an async task whenever the user changes the spinner option. But my expresso…
user1018916
  • 348
  • 4
  • 16
0
votes
1 answer

Android Expresso/UI Automator How do i automate clicking on Android screens outside my app (app picker)

My Android application has a button to download a file and then send it to an application on the device. Android pops up a screen listing the Applications on the device for the user to select which application to use. I would like to automate this…
se22as
  • 2,282
  • 5
  • 32
  • 54
0
votes
2 answers

Android Expresso verifying Context Menu and actionBar items

I have a list where every row contains a name and a button that invokes a Context Menu of options. I would like to write a test that verifies the following things the context menu contains the correct NUMBER of items the context menu contains the…
se22as
  • 2,282
  • 5
  • 32
  • 54
0
votes
0 answers

Test artifacts not present

Test artifacts column is not present in the build variants tab. I tried everything but still i'm unable to get the test artifacts column. My dependencies in app's build.gradle file look like as given below: dependencies { // compile…
Apurv Pandey
  • 217
  • 2
  • 7
0
votes
1 answer

Node.js test with expresso

I tried to use expresso to test my project. I have installed it with command sudo npm install --save expresso and it worked for me. Than I decided to test it in created test.js file with code var assert = require('assert'); assert.equal(6,…
Maria
  • 515
  • 4
  • 17
0
votes
2 answers

Regular expressions, capture group

This would be the sample text:
Quoter
  • 4,236
  • 13
  • 47
  • 69
0
votes
0 answers

Member Registration in Expresso Store

Edited to note that the issue was with a conflict between how Expresso Store stores the passwords and the "require secure passwords" option in the EE Admin/Security CP. Turning of requirement of secure passwords fixes the issue, but not the…
0
votes
1 answer

Expresso Store - Exclude Product from Order Quantity

I'm using Expresso-Store to process product orders for a non-profit. In addition to selling a range of handmade products we are offering visitors an option to donate. I have most of the donation stuff working just fine. I used Justin Long's advice…
0
votes
2 answers

REGEX: How to find a date format after a specific keyword?

I am scratching my head over this. For example I have: Date sometext somtext 27-7-2013 What I want to do is I want to get the first date format string pattern after the Date keyword. Here is what I currently have: (?i)(?<=date.*)\d+-\d+\d+ But…
user488792
  • 1,943
  • 7
  • 31
  • 38
1 2
3