Questions tagged [testautomationfx]

Test Automation FXis a tool for User Interface testing in Visual Studio

Test Automation FX (TAFX for short) is a tool for User Interface testing in Visual Studio. It enables developers and testers to record and manage user interface tests from inside Visual Studio with 100% .Net code.

Test Automation FX is developed by Cenito Software.

77 questions
0
votes
1 answer

Run Test automation code from Development repository on every push through Bitbucket pipelines

I am Test automation engineer and I have developed my automation code repository to test functional aspect of the product. I want this code to run when any developer pushes feature or bug on the beta environment. I have built the pipeline on…
0
votes
1 answer

get text with index number and then compare with the expected text

I need to write a method which will get text with the help of index number from popup and then i need to compare with the expected text i.e i need to verify expected plan name is displayed at the bottom of the popup box
zzz
  • 497
  • 3
  • 14
  • 32
0
votes
1 answer

How to click on Cortana search using coded UI

I tried this piece of code to click on Cortana search option on Windows 10 using Coded UI: WinPane Desktop = new WinPane(); Desktop.TechnologyName = "MSAA"; Desktop.SearchProperties.Add(WinPane.PropertyNames.ClassName,…
0
votes
1 answer

Should I use Mac for testing iPhone or is Windows enough?

I managed to control my android device with both 'ADB' and 'Appium' on windows system. Question is : Can I do the same for iPhone ? as i heard that it can't be done in windows platform and it isn't clear on net. Also wanted to know if the iPhone sdk…
0
votes
0 answers

Executing a selected test when a particular data row is selected

I'm trying to do a simple if else function during a particular number of data row executed for Data Driven Testing. The idea is simply to execute test "x" if the current data row is "x". I found a property (CurrentDataRow) in Telerik documents to…
0
votes
1 answer

Coded UI test are failing when Azure VM is not connected using RDP

I am trying to trigger Coded Ui test cases on Azure VM using VSTS pipeline(using Run Functional Tests task) I am encountering a problem that when my RDP is not connected all my test are failing but when RDP is connected test are showing expected…
Ankit
  • 11
  • 1
0
votes
1 answer

Can I add multiple Test Methods in .cs in Coded UI

Can I add multiple test methods in one .cs file in code UI. Below is my code. I have two features. 1. Login and Log off. I have created one CodedUITest1.cs file where i an trying to add multiple methods. Is it really possible to do that public class…
Shayni Sood
  • 17
  • 1
  • 6
0
votes
3 answers

I am using SystemUtil.Run String but is is giving me "Invalied Procedure call or Arguement"

I use following code to run an install file from c: drive.But it throws "Invalid Procedure call or Argument" error.I have tried "eval" to regularize the string ,but it didn't work. dim BookName dim Tmonth dim Trimyear BookName="Name of a book" …
0
votes
1 answer

How to merge NCover code coverage for 2 projects

When I run code coverage for 2 of my test projects, I get 2 zipped files and 2 html files giving me the code coverage for each of the projects. What I want is, one consolidated report that includes code coverage for both the projects. I am using…
pkhabya
  • 333
  • 4
  • 15
0
votes
3 answers

How to run test cases in MS Excel from Selenium IDE?

How to run test cases in MS Excel from Selenium? Any books available to study Selenium test automation?
Onnesh
  • 1,169
  • 3
  • 15
  • 31
0
votes
1 answer

Validating The Login Credentials using Data Driven Frame Work

Hi I am trying to validate the credentials for the multiple users using the Selenium WebDriver. Lets take Gmail as Example. All User and Password information are saved in the Excel file. Problem: say for user 1 - I am entering the valid user name…
0
votes
1 answer

Tool to automate android application which have no UI but runs in background

I am a new to android application testing. I need to study the possibility of automating test cases for an android app which runs in background and will talk to a web service in a server. This app will periodically send particular information to the…
0
votes
2 answers

Is Page Object Pattern suitable for Windows Application

I have read that Page Object Pattern is suitable for the Web Application Automation and I have used the Page object pattern with Selenium for one of the Web Apps I have automated. How ever I am curious to know is Page Object suitable to…
0
votes
1 answer

Are there any special characters in Windmill? How do I override?

I'm attempting to closeout a popup named [Close]. client.click(link=u'[Close]') client.waits.forElement(link=u'[Close]', timeout=u'8000') It seems to die here. 'debug': u'Looking up id docname, failed. >>> test_results: ERROR Test Failure in…
TangibleDream
  • 601
  • 8
  • 29
-1
votes
1 answer

I am writing automation script on website and while running script from python I am getting this error "Website_link is not a supported browser."

Here is the code that I am using Resource file code *** Settings *** Library SeleniumLibrary Variables ../PageObject/inspectpath.py *** Keywords *** open my browser [Arguments] ${siteurl} ${browser} open browser …