leochabi / selenium-vba

Automatically exported from code.google.com/p/selenium-vba
0 stars 1 forks source link

Problem after Installing Wrapper 1.0.10 #15

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
Operating system : XP SP2
.Net Framework version : 3.5
Office Version : 2007
SeleniumWrapper version : 1.0.10

What steps will reproduce the problem?

1. In Excel VBA start Firefox with ans Internetpage
for example:  selenium.Start "firefox", "http://www.spiegel.de/"

2. Firefox opens but no Internetpage

3. even after reinstalling to 1.0.9 this Problems exists

Before installing Version 1.0.10 this Pacgae works really fine.

Regards
Christian

Original issue reported on code.google.com by Neyses.i...@gmail.com on 20 Feb 2013 at 9:48

GoogleCodeExporter commented 8 years ago
The start command launch the browser without any page and set the root address.
It must be followed by the open command to show a page.
Ex :
selenium.start "firefox", "http://www.spiegel.de"
selenium.open "/"
...
selenium.open "thema"

It's been working like that since the beginning, even in version 1.0.9.
Please provide another example if you still have issues.

Original comment by florentbr on 20 Feb 2013 at 12:01