Open GoogleCodeExporter opened 9 years ago
Please provide an example to reproduce the issue on a public website.
Original comment by florentbr
on 21 Feb 2013 at 11:52
Sorry this shouldn`t be a "Defect". I thought that I Choose "Support"
Original comment by Neyses.i...@gmail.com
on 21 Feb 2013 at 11:56
This was my example:
Public Sub TC001()
Dim selenium As New SeleniumWrapper.WebDriver
selenium.Start "internetexplorer", "http://www.google.com/"
selenium.Open "/"
selenium.Type "name=q", "Eiffel tower"
selenium.Click "name=btnG"
selenium.Wait 1000
selenium.getScreenshot().Copy
selenium.stop
Sheets(1).Range("A10").PasteSpecial 'Paste the screenshoot at range A10
End Sub
Original comment by Neyses.i...@gmail.com
on 21 Feb 2013 at 11:57
I think I have to define the path to the IE-Driver.. But I don`t know where.
Original comment by Neyses.i...@gmail.com
on 21 Feb 2013 at 11:59
There's no path to define, that's why i changed the issue to Defect.
Can you try to run this code in a .vbs file and tell me if it went without
error ?
Set selenium = CreateObject("SeleniumWrapper.WebDriver")
selenium.Start "ie", "http://www.google.com/"
selenium.Open "/"
selenium.Type "name=q", "Eiffel tower"
selenium.Click "name=btnG"
selenium.Wait 1000
selenium.getScreenshot().Copy
selenium.stop
wscript.echo "END"
Original comment by florentbr
on 21 Feb 2013 at 12:34
Yeah now it works :-)
After running the .vbs I got the message that the zoom Level of Internet
Explorer was set to 105%. And it has to be at 100%.
After setting it to 100% everything is fine! :-)
Thanks for your Help!
Best Regards
Christian
Original comment by Neyses.i...@gmail.com
on 21 Feb 2013 at 12:45
Original comment by florentbr
on 21 Feb 2013 at 3:35
Original comment by florentbr
on 8 Sep 2014 at 5:36
Original issue reported on code.google.com by
Neyses.i...@gmail.com
on 21 Feb 2013 at 11:03