Replies: 9 comments
-
Hey @pooja1233 - Can you read the instructions on this page and see if it helps? If not, please let me know. Thanks! |
Beta Was this translation helpful? Give feedback.
-
No i was was following that document but no success , so I launch app with once application open , I can see webpage loaded inside it def create_edge(): but this is opening new instance of the edge inside the app , I need to connect what launches manually |
Beta Was this translation helpful? Give feedback.
-
Your code looks a bit different then what's described for the options here: What version of Selenium are you using? |
Beta Was this translation helpful? Give feedback.
-
I have 3.141.0 |
Beta Was this translation helpful? Give feedback.
-
I'm unfamiliar with the robot framework, but I believe you need to be using Selenium version 4.0+. |
Beta Was this translation helpful? Give feedback.
-
I did update selenium to 4.0 but still its not working , do you have any example in python hoe to connect to existing session , or how to open an webview app with url , I was trying to use Zoomba.GUILibrary open browser but it again use another instance |
Beta Was this translation helpful? Give feedback.
-
I can grab process id pf webview app and inside there is webview2.exe , i can get port number too , I tried to connect through port number too but no luck |
Beta Was this translation helpful? Give feedback.
-
I don't think we have specific examples of this scenario, besides what's in the doc I posted. @bwalderman Any ideas? |
Beta Was this translation helpful? Give feedback.
-
Hi @pooja1233 , please remove Here's an updated sample which should work: def create_edge():
options = EdgeOptions()
options.debugger_address = 'localhost:9222'
driver = Edge(options = options) |
Beta Was this translation helpful? Give feedback.
-
I tried open browser but it opens url inside but with different instance , if I click manually on that it load webpage , how to do that through automation
Beta Was this translation helpful? Give feedback.
All reactions