Search found 8 matches

by aidan.mcdonnel
Tue Sep 11, 2018 1:37 pm
Forum: Object Identification and Technologies
Topic: Chrome plugin stopped working
Replies: 4
Views: 2410

Chrome plugin stopped working

The chrome plugin just stopped working

The Chrome version is v68.0.3440.75
The plugin version is Ranorex Automation 1.1.3
I have the plugin installed and activated
I have reinstalled Ranorex 8.2

plugin error appears ?


Help!!! :D
by aidan.mcdonnel
Tue Aug 21, 2018 1:25 pm
Forum: Automation Tools
Topic: Simplify ranorex report in pdf form
Replies: 1
Views: 1637

Simplify ranorex report in pdf form

Hey All

I have the conversion of Ranorex report to pdf working but the format is very confusing

Is the a way to Simplify the PDF like remove the Table of contents and the test steps
Giving a more general report.

Any ideas how to do this are welcome.

Thanks
Aidan
by aidan.mcdonnel
Tue Aug 07, 2018 3:03 pm
Forum: Automation Tools
Topic: searching for item after action
Replies: 1
Views: 1553

searching for item after action

Hi

I'm finding that Ranorex is still searching for an element after an action is performed on that element?
Is this right?

Thanks

Aidan
by aidan.mcdonnel
Wed Mar 28, 2018 12:21 pm
Forum: Automation API
Topic: How do I define the dom after an event
Replies: 1
Views: 1721

How do I define the dom after an event

I'm testing a dynamic web application at the moment. Some events change the DOM after the event is fired e.g button is clicked These events can be AJAX or React An example would be as follows Pre event the dom is <div id="container "> <div> item 1 </div> </div> Post event the dom is <div id="contain...
by aidan.mcdonnel
Thu Feb 01, 2018 2:54 pm
Forum: How To …
Topic: References to Ranorex libraries
Replies: 1
Views: 2066

References to Ranorex libraries

Hey All I created a Ranorex solution in the non standard folder i.e. "C:\Ranorex" This still references the Ranorex core libraries in the installation folder. However when I try to build the solution on Teamcity of course the build fails because the core libraries are not found. Is there away to man...
by aidan.mcdonnel
Wed Jan 24, 2018 12:34 pm
Forum: How To …
Topic: upload file using Webdriver integration
Replies: 0
Views: 2134

upload file using Webdriver integration

Hey I'm new to Ranorex so easy on me pls :) Is it possible to recreate the following C# _driver = new RemoteWebDriver(new Uri(hub_url),options); _driver.FileDetector = new LocalFileDetector(); FileWebElement= _driver.FindElement(By.ClassName("inputfile")); FileWebElement.SendKeys(path); UploadButton...
by aidan.mcdonnel
Fri Aug 11, 2017 11:45 am
Forum: Automation API
Topic: Web Driver Actions
Replies: 2
Views: 2258

Re: Web Driver Actions

Thanks for the response Steve

I think my main problem is getting the active Driver :)

Aidan
by aidan.mcdonnel
Wed Aug 09, 2017 2:33 pm
Forum: Automation API
Topic: Web Driver Actions
Replies: 2
Views: 2258

Web Driver Actions

Hey all Just doing a POC on Ranorex and I'm wanted to know if its possible to use something like public void clickandDrag(IWebElement location) { Actions builder = new Actions(Driver); try { builder.DragAndDrop(ReferenceElement, location).Build().Perform(); } catch (Exception w) { } builder = null; ...