Python Selenium is opening a tab but not the link as shown in the given image
The issue is that when I run it in Linux, it does not open the link as shown in this image
terminal:- here you go
Thanks for your time
Python Selenium is opening a tab but not the link as shown in the given image
The issue is that when I run it in Linux, it does not open the link as shown in this image
terminal:- here you go
Thanks for your time
Can you please try below solution :
from selenium import webdriver
while True:
driver = webdriver.Firefox(executable_path="/usr/local/bin/geckodriver")
driver.get("http://google.com/")
driver.quit()