Re: How to access Webtable->Webelement(Combo box) data

2016-10-12 Thread Vikash Mishra
Set WebObj = Browser("FruitoftheDay").Page("MY PAGE -").WebTable("ABC").ChildItem(1, #1, "WebElement", 0) WebObj.click On Tuesday, October 11, 2016 at 10:07:07 PM UTC+2, sarah...@gmail.com wrote: > > Hi, > > I need to select an option from a combo box. When I use the Spy the combo > box is a we

Re: How to access Webtable->Webelement(Combo box) data

2016-10-12 Thread sarahmear9
Hi, I used msgbox to get the values and this is what I get, msgbox WebObj.GetROProperty("innertext") *When *ChildItem(1, 1, "WebElement", 0)*, it returns the field name.* When ChildItem(1, 1, "WebElement", 1), it returns the * next to the field name When ChildItem(1, 1, "WebElement", 2), this

Re: How to access Webtable->Webelement(Combo box) data

2016-10-12 Thread sarahmear9
Hi, I understand how it works, I used index 0 to select the combo box and then used WshShell to move down in the combobox. Set WebObj = Browser("FruitoftheDay").Page("MY PAGE -").WebTable("ABC").ChildItem(1, 1, "WebElement", 0) WebObj.click WshShell.SendKeys "{DOWN}" WshShell.SendKeys "{DOWN}"

How to click a WebMenu icon

2016-10-12 Thread sarahmear9
Hi Browser("abc").Page("HelloWorld").WebMenu("TabView:0:scForm:j_idt98") The webmenu has an Home icon and some text link. If we click the icon, it takes you back home and if we click on link, it displays more links on the page. Spy captures both the icon and the text link as webmenu. Record

Re: How to access Webtable->Webelement(Combo box) data

2016-10-12 Thread vamsi 4guts
try to use Drag and Drop It worked for me when the list box as WebElement. Browser().Page().WebElement().Drag Browser().Page().WebElement().Drop On Wed, Oct 12, 2016 at 10:56 PM, wrote: > Hi, > > I understand how it works, I used index 0 to select the combo box and then > used WshShell to move