Code: Select all
from selenium import webdriver
from time import sleep
from selenium.webdriver.common.keys import Keys
import pandas as pd
from selenium.webdriver.support.ui import Select
from selenium.webdriver.common.by import By # in the code there are usage of By but not imported
browser = webdriver.Chrome(executable_path="./chromedriver")
browser.get("https://fireant.vn/dashboard/content/industries/4000")
button=browser.find_element(By.CSS_SELECTOR, ".bp3-button")
button.click()