Hi all
I am having issues with a code snipped in REPL.
As seen in the video the REPL hangs (or at least it is VERY slow) at two lines.
Surprisingly the first line is a comment line. The other line with the issue is the driver.get
line
All I do in the video is pasting the entire snippet into the console (right click)
I can reproduce this on another windows machine.
BTW: VS code crashes when I run the driver.get(url) row.
Any idea how I can fix (or debug?) this?
here is the code snippet.
using InteractiveUtils;
versioninfo()
using PyCall
webdriver = pyimport("selenium.webdriver")
#driver = webdriver.Chrome()
driver = webdriver.Firefox()
url = "https://www.dell.com"
smt = driver.get(url)
versioninfo()
0