Author Topic: RoboB.GetURL Failing  (Read 1146 times)

0 Members and 1 Guest are viewing this topic.

PegLegTV

  • $upporter
  • Hero Member
  • *****
  • Posts: 500
  • Karma: 43
    • View Profile
RoboB.GetURL Failing
« on: October 12, 2016, 12:53:31 PM »
RoboB.GetURL is failing to get the current URL I've Tested with

2.2.2.9
2.2.2.8
2.2.2.7
2.2.2.2

the only one that works is 2.2.2.2

I also noticed that .7, .8, and .9 when running the command I attached below causes VC to freeze/pause where in .2 it functions like it should (each action shows in history as they happen)

Code: [Select]
<?xml version="1.0" encoding="utf-16"?>
<!--VoxCommando 2.2.2.2-->
<command id="396" name="RoboB.GetURL - Fail" enabled="true" alwaysOn="False" confirm="False" requiredConfidence="0" loop="False" loopDelay="0" loopMax="0" description="">
  <action>
    <cmdType>RoboB.Select</cmdType>
    <params>
      <param>TEST</param>
    </params>
    <cmdRepeat>1</cmdRepeat>
  </action>
  <action>
    <cmdType>RoboB.Navigate</cmdType>
    <params>
      <param>https://www.google.com/</param>
    </params>
    <cmdRepeat>1</cmdRepeat>
  </action>
  <action>
    <cmdType>RoboB.Wait</cmdType>
    <params />
    <cmdRepeat>1</cmdRepeat>
  </action>
  <action>
    <cmdType>RoboB.Select</cmdType>
    <params>
      <param>TEST</param>
    </params>
    <cmdRepeat>1</cmdRepeat>
  </action>
  <action>
    <cmdType>RoboB.Wait</cmdType>
    <params />
    <cmdRepeat>1</cmdRepeat>
  </action>
  <action>
    <cmdType>RoboB.GetURL</cmdType>
    <params />
    <cmdRepeat>1</cmdRepeat>
  </action>
</command>

Windows 10

jitterjames

  • Administrator
  • Hero Member
  • *****
  • Posts: 7715
  • Karma: 116
    • View Profile
    • VoxCommando
Re: RoboB.GetURL Failing
« Reply #1 on: October 12, 2016, 01:17:00 PM »
Use ++ in the newer versions for the name of any command that uses RoboB.Wait
I hope to make it automatic eventually.

I'll look into the rest.

Thanks.

PegLegTV

  • $upporter
  • Hero Member
  • *****
  • Posts: 500
  • Karma: 43
    • View Profile
Re: RoboB.GetURL Failing
« Reply #2 on: October 12, 2016, 03:00:02 PM »
adding the ++ seems to have fixed all the issues, Thanks