Open GoogleCodeExporter opened 9 years ago
Maby the rendering is not finished when the copy command is executed.
Try to wait a bit longer before each copy :
selenium.wait 2000
selenium.getScreenshot().copy
Have you tried with other browsers ?
Original comment by florentbr
on 20 Mar 2013 at 4:53
Hi...
Now I realised that this Problem only occure when I use the getScreenshot in a
function from another function.
example:
Private Sub TestSub(Zeile As Integer)
(normal selenium Test which works fine)
Screenshot
End Sub
Private Function Screenshot()
Dim selenium As New SeleniumWrapper.WebDriver
'Mache einen Screenshot
selenium.Wait 1000
selenium.getScreenshot().Copy
'Speichere Screenshot auf ReportSeite
Sheets(6).Range("A10").PasteSpecial
End Function
====
Original comment by Neyses.i...@gmail.com
on 21 Mar 2013 at 8:27
When I switch of the "on error resume next" I get the message "Ungültiger
Zeiger" (Invalid Pointer on English) ...
I can't understand it because the selenium.wait works without Problem
Original comment by Neyses.i...@gmail.com
on 21 Mar 2013 at 9:54
Your probably get this error because you forgot the "open" command in your
example.
If it doesn't solve your problem, please provide a full example using a public
website that will reproduce the issue.
Original comment by florentbr
on 21 Mar 2013 at 1:14
In the Exampel the "Open" Comman is in the Sub "TestSub"
Original comment by Neyses.i...@gmail.com
on 22 Mar 2013 at 1:51
In your Screenshoot function, you are creating a new browser instance (New
SeleniumWrapper.WebDriver) without using the open command, which leads on a
failure on the getScreenshoot as there is no webpage.
The rigth syntax is :
Private Sub TestSub(Zeile As Integer)
Dim selenium As New SeleniumWrapper.WebDriver
(normal selenium Test which works fine)
Screenshot selenium
End Sub
Private Function Screenshot(Byref selenium as SeleniumWrapper.WebDriver)
'Mache einen Screenshot
selenium.Wait 1000
selenium.getScreenshot().Copy
'Speichere Screenshot auf ReportSeite
Sheets(6).Range("A10").PasteSpecial
End Function
Original comment by florentbr
on 22 Mar 2013 at 2:21
Perfect ;-) Thank you very much!
Original comment by Neyses.i...@gmail.com
on 22 Mar 2013 at 3:15
Original comment by florentbr
on 25 Mar 2013 at 12:07
Original issue reported on code.google.com by
Neyses.i...@gmail.com
on 19 Mar 2013 at 2:17