list = [40000 elements]
After processing first 30 elements need to pause for 5 minutes and then start processing again the next 30 element from the list.
a = list(set(proflinks))
a = sorted(a) # list a has 40000 elements
a=a[0:30]
#print(a)
for b in a:
inedex = a.index(b)
print('profile____' + str(inedex) + '____is processing')
profileMeta(driver,b)