I'm working on a python selenium script. I find some elements in firefox by the command :
large_bu = driver.find_elements_by_class_name('butik.large.col-lg-12.col-md-12.col-xs-12')
and len(large_bu)
returns 20.
But when i try this in Chrome Driver len(large_bu)
returns 0
.
How can i find this elements in Chrome Driver ?
Thanks for your replies. sorry for my bad English.