Jump to content

Sky Slate Blueberry Blackcurrant Watermelon Strawberry Orange Banana Apple Emerald Chocolate
Photo

Automation of Browser driven PLM (eMatrix)


  • Please log in to reply
6 replies to this topic
barnon
  • Members
  • 9 posts
  • Last active: Nov 22 2013 12:27 PM
  • Joined: 26 Sep 2013
I've been using Autohotkey to automate our Data Base Management system. But mostly using mouse movements. The browser interface has a lot of menu flyouts and popups which I can't seem to activate any other way. Unfortunately due to peek high traffic times my wait times are excessive.
 
Attached are a few screenshots of the interface and IE developer widow. I'd like to be able to select the "Create BOM Item..." from the flyout menu directly.  Any pointers would be greatly appreciated.

 

 

http://www.hausmetal...com/eMatrix.jpg

http://www.hausmetal...m/developer.jpg



Jackie Sztuk _Blackholyman
  • Spam Officer
  • 3757 posts
  • Last active: Apr 03 2016 08:47 PM
  • Joined: 28 Feb 2012
you can try this tool http://www.autohotke...r-iwebbrowser2/

and this tut http://www.autohotke...t-com-tutorial/

in that pic i see an table where the parent Row element has an ID of "tremx796082906740.9669" this can be used with GetElementById() and childnodes[n] to the needed depth.

if you need more help please post what you have tryed and html code from the page or a link...

hope it helps
Helping%20you%20learn%20autohotkey.jpg?d

[AHK] Version. 1.1+ [CLOUD] DropBox ; Copy [WEBSITE] Blog ; About

barnon
  • Members
  • 9 posts
  • Last active: Nov 22 2013 12:27 PM
  • Joined: 26 Sep 2013

Thanks for the reply.

 

I'll run thru the tutorial before I ask any more question.



barnon
  • Members
  • 9 posts
  • Last active: Nov 22 2013 12:27 PM
  • Joined: 26 Sep 2013
Still Greek to me. Sorry if my terminology is incorrect. This is an example of my noobie script that uses mouse moves to select the flyout menus. This script works and extracts data from the spreadsheet and inputs in into the database but I can't seem to figure out how to select those buttons any other way. 
 
 
Spoiler


 
*********************************************************** Below is the HTML code as exported from IE developer ********************************************************************
Just looking at the view source from the IE window doesn't show much.

Spoiler


barnon
  • Members
  • 9 posts
  • Last active: Nov 22 2013 12:27 PM
  • Joined: 26 Sep 2013

Is it weird that the Row element  ID was  "tremx796082906740.9669" and today it's TR id=tremx625120356443.9403 for the Create BOM Item...?



Grendahl
  • Members
  • 416 posts
  • Last active: Jul 07 2014 08:01 PM
  • Joined: 10 Aug 2009
Please wrap your code in Spoiler BBCode.
Always have your scripts when you need them with Dropbox.
Sign up for free! http://db.tt/9Hrieqj

barnon
  • Members
  • 9 posts
  • Last active: Nov 22 2013 12:27 PM
  • Joined: 26 Sep 2013
Done.

I'm a poor excuse for a programmer but I think if I could get an example of how to select the "Create BOM Item..." button I could run with it.

Thx for any help.