On web-page there is button, which describe by code below:
<button onclick="getListRating(1); return false;" class="button is-gray pagination__more">Open</button>
Need to click by use selenium lib - first i tried to find as "css_celector" but it didn't work:
allm=driver.find_element(By.CSS_SELECTOR, 'button is-gray pagination__more') # Find button
allm.click() # Click!
What find class i need to use to click this button?