Hi I'm pretty new to selenium and I'm trying to open different links in a for loop but driver.get
sends the URL to the bar but without loading. This happens only for the link in the for loop, not the first one. I have tried to look for a couple of similar Qs but I'm not sure what am I doing wrong
class RunGCTest():
def test(self):
driver_location = x
os.environ["webdriver.chrome.driver"] = driver_location
driver = webdriver.Chrome(driver_location)
driver.implicitly_wait(30)
driver.get("https://test.com/")
import csv
with open
....
for abc in range(len(xyz)):
driver.get("https://test.com/page="+xyz[abc][1])
ChromeTest = RunGCTest()
ChromeTest.test()