Hi,
we're following this page http://docs.telerik.com/teststudio/features/test-runners/artoftest-runner
We're trying to overwrite the baseURL by specifying a new one in a setting file called "settingAutomatedRun.xml" .
We then pass this file to "ArtOfTest.Runner.exe" using the "setting=" command.
The issue we're running into is that the setting file is loaded but the BaseURL provided in the setting file is never used,
The setting file looks something like this:
----------------------------------------------------
<configuration>
<WebAii.Settings.Web recycleBrowser="true" baseUrl="###"> </WebAii.Settings.Web>
</configuration>
-----------------
The commands used to kickof the Execution server looks something like this:
ArtOfTest.Runner.exe list=### result=settingsAutomatedRun.xml
Can anyone explain why this isn't working ?
I have a problem with finding an element. When I run my test, then sometimes I get this error in my test step and sometimes it works. I tried wait steps and other wait methods in code, but it doesn't help me.
ArtOfTest.Common.Design.Exceptions.ExecutionException: Exception thrown executing coded step: 'Check unit prices in the modal form'. ---> System.NullReferenceException: Object reference not set to an instance of an object. at ArtOfTest.WebAii.Controls.HtmlControls.HtmlDiv..ctor(Element e)
Here is the code, where it crashes:
HtmlFind find = new HtmlFind(Manager.ActiveBrowser.Find.ById("modal"));
HtmlDiv div = new HtmlDiv(find.ByAttributes("class=col-info"));
Hi Team,
I'm new to the Telrik Test Studio and was wondering if you can add more fields to the Logon dialog? or is the username and password field standard?
If so how would you recommend I complete three fields for a logon step?
I have 1. InstanceName 2. Username 3. Password
If there is any documentation out there or another thread that has the answer that would be GREAT!
Thanks! and sorry if this is a stupid question.
Hi
Could you please clarify the
following queries
- Can we automate apple ios
devices from windows OS?
- Test Studio is compatible only
with windows OS for desktop applications, but does it provides full support
with MAC OS for mobile testing?
- Safari browser has limitations with windows
OS. Would there be any execution issues with Safari using Test Studio Desktop?
Thanks
Basha
After updating the API Test Tool to build 2016.3.928.0
ERROR
Unable to open project: 'PATH\PROJECT'!
Object reference not set to an instance of an object.
OK
Hello,
We're currently evaluation Test Studio, but are getting the following error on configuration:
"Android build tools not found"
Is there a simple fix for this?
Thanks
I'm attempting to test drag and drop functionality on an Angular page.
I identified a List Item element with dynamicid by it's unique InnerText, and have a step to drag and drop this record to another row. No problems here.
In the below example, how can I perform a verification test to see that Cat1 Tag1 element has moved from row 1 in the unorderedlist to row 2?
The element Property AbsoluteSiblingTagIndex shows the index information that I need, but not sure how I can utilize this in a step. Is a coded step required? If so, idea on an approach for this?
I suppose I could create a new element with same innertext and include the new xpath location on it, but this seems more brittle to me. And I really wanted the index location as part of the verification and not the element itself.
I have the need to test an inbox message count and verify that when a message is read, the count is reduced by 1. I am at a loss for how to accomplish this. We use a class within a span to define the message count integer. We are displaying it like "Inbox (10)" and after opening and reading an item, i want to verify that the count has been reduced by 1.
Here is the span in use where the number in the ( ) is the message count.
<span class="unreadNum ng-binding">(12)</span>