-
Notifications
You must be signed in to change notification settings - Fork 115
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Not able to execute canopy script on Edge Browser #522
Comments
I downloaded the edge driver from here: https://msedgedriver.azureedge.net/92.0.902.55/edgedriver_win64.zip Unzip the exe, placed it in
|
Does this same set of code you are writing work with other browsers? You will have to share more code than this. That error message is because the browser is null. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Describe the bug
I am trying to execute canopy script on Edge Browser but my script is not able to execute. Edge browser is opening at the time of execution but the given URL is not entering on browser. So that next flow of test case is not working.
I am using below code to open Edge Browser and entering URL in it, using this code Edge browser is opening but not able to enter URL
let OpenEdgeBrowser(givenUrl) =
start EdgeBETA
pin types.Left
url givenUrl
If I use below code then Edge browser itself is not opening
let OpenEdgeBrowser(givenUrl) =
browser <- new EdgeDriver()
url givenUrl
Also Nuget Package related to Edge browser is installed and a edge driver is also placed at given location in code (C drive)
Could you please suggest solution?
The text was updated successfully, but these errors were encountered: