I want to click the upload image button using chrome selenium
I've tried to code, but it doesn't work
this is the html
this is my code
Would appreciate any advice on how to click this button using the Selenium in Excel VBA, thanks.
I've tried to code, but it doesn't work
this is the html
this is my code
VBA Code:
Public Sub CallChrome1()
Dim ch As Selenium.ChromeDriver
Dim wsh As Object
Dim strFolder As String
Set wsh = CreateObject("Wscript.Shell")
strFolder = wsh.regread("HKCU\Volatile Environment\LOCALAPPDATA") & "\Google\Chrome\User Data"
Set ch = New Selenium.ChromeDriver
ch.AddArgument ("user-data-dir=" & strFolder)
ch.AddArgument ("profile-directory=Default")
ch.Start
ch.Get "example.com"
Application.Wait (Now + TimeValue("0:00:05"))
ch.ExecuteScript "window.open(arguments[0])", "example.com"
ch.SwitchToNextWindow
Application.Wait (Now + TimeValue("0:00:10"))
ch.FindElementByXPath("//button[text()='Upload Image']").Click 'Not Working
ch.FindElementByCss("*.next-btn.next-medium.next-btn-primary").Click 'Not Working
ch.FindElementByXPath("//*[@class='next-btn next-medium next-btn-primary' and text()='Upload Image']").Click 'Not Working
MsgBox "Press OK to Close"
End Sub
Would appreciate any advice on how to click this button using the Selenium in Excel VBA, thanks.