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
1
vote
2 answers

Is there a easiest way to migrate Selenium 1.0 code to WebDriver?

I am having old test automation framework developed using Selenium 1.0 and now wants to migrate my code to WebDriver. Is there any easiest method to do this migration? I have overridden most of the methods such as type, click, getText,…
Paresh
  • 1,140
  • 2
  • 12
  • 29
1
vote
1 answer

Error reporting in Test Automation FX

I create automated tests with Test Automation FX and I'm beginner. I need to know how to fail test from within test script? I am using C# scripting. Say if I want to recognize some window control and have to perform action on…
Srinidhi
  • 45
  • 3
1
vote
2 answers

SVG and selenium

Hej Guys I an using google visualization api to draw stacked bar chart. Its all fine but now i want to test it with selenium but having a hard time finding the elements in the google chart. For example i want to click on the chart element but…
Hassan Ata Ullah
  • 347
  • 1
  • 2
  • 16
0
votes
1 answer

gui Information do i from wp7 xap file?

I'm a student in South Korea interested in becoming a programmer. I'm currently interested in making a software to automatize windows application testing. I have a question regarding this matter Is it possible to obtain the UI information of Wp7 in…
0
votes
1 answer

How to parameterize element locators in pytest playwright

How to write an element locator of which the text value could be parameterized in Pytest Playwright. Eg: We can do it like this in Selenium, initially define a string: String product_code = form[@data-id='PRODUCT_CODE'] and then updating the…
0
votes
0 answers

How to automate validation of console logs from adobe analytics using Selenium?

I am trying to validate the console has certain data which is being produced by adobe analytics. Manually I have added debugger for adobe analytics plugin to my chrome browser and upon certain actions that I perform on UI (e.g. clicking on a button…
0
votes
1 answer

ClassCastException with WebElement in Serenity Screenplay project (Chrome Browser)

I am trying to run a Serenity Screenplay suite on latest Chrome Browser. In this suite I have a testcase to validate a Dropdown field which is inside a Shadow Root and for this reason I am using JavascriptExecutor and the code looks like: WebDriver…
0
votes
0 answers

How can I switch between multiple WEBView in each test Appium

During my tests, I pass the Webview and interact with the related fields with the following code. Everything is fine until here. ((AndroidDriver) getDriver()).context((String) handles.toArray()[1]); Object[] windowHandles =…
Onurcan
  • 31
  • 2
0
votes
1 answer

how to access iframe with JavaScript using Playwright and Cucumber?

I work on a test automation project on an automotive site, for that I use JavaScript as a programming language with the two Playwright and Cucumber frameworks. So when I did my test I got to a test where I have to manipulate the iframes so I can't…
0
votes
1 answer

How could i fix this issue

class Test_Registeration @Test(groups = "group1") class Test_Registeration @Test(groups = "group2", dependsOnGroups = "group1") When I use these annotations it gives me this error that it doesn’t exist Error: DependencyMap::Method…
0
votes
0 answers

How to run Selenium dotnet test in headless mode from command line?

I am running selenium test written in DotNet from command line using the following command dotnet test myprojectName.csproj It works fine without any problem. How can I run the same tests in headless mode using command line?
Kahn
  • 429
  • 3
  • 6
  • 19
0
votes
0 answers

Hi! I am looking for a solution to automate the testing process of Pega RPA bots which involves desktop applications

I am looking to automate the process of testing Pega rpa bots, these bots involve desktop applications so Figured out selenium will not work.Any ideas?
Bhav
  • 1
0
votes
0 answers

Robot Framework - Is there a way to get the current file name I am right now in?

I am using Page Object Model in Robot Framework Test Automation and I am trying to pick up the test data using the page object file name. So I would like to read the file name in which I am currently in. Is there a way to pick up the file name from…
0
votes
0 answers

How to Start Django Server on a remote host via robotframework .robot file?

How to Start Django Server on a remote host via robotframework .robot file? I tried robotframework-djangolibrary still not working on remote host, but local it's working. I tried executing manage.py runserver command but didn't work for remote…
0
votes
1 answer

IOS mobile app test automation on windows

I have got a freelance project for mobile app test automation.The app is written in react native. I need to run test automation on IOS and android. But I haven't a macbook.Basically, I use appium , Java,Testng to write automation tests on android.…