분류 전체보기72 셀레니움 image 다운 안 받기 options.add_argument('--blink-settings=imagesEnabled=false') 2023. 8. 23. 크롬 115 116 버전 업데이트 셀레니움 에러 크롬이 최근 계속 업데이트 되면서 셀레니움 문제가 발생,, 드라이버를 같이 올려주지 않은 것. 원래 셀레니움을 쓸 때 버전이 업데이트 되어도 계속 최신 버전의 드라이버를 쓸 수 있도록 driver = webdriver.Chrome(service=Service(ChromeDriverManager().install()), options=options) 이렇게 작성했었는데 문제의 시작. 처음 114 -> 115 버전으로 바뀌면서 드라이버 지원이 안되는 건지 크롬창 자체가 열리지 않는 문제가 생김. 근데 해결 방법은 의외로 간단했다. driver = webdriver.Chrome(service=Service(), options=options) 이렇게 바꾸니 해결됨. 근데 얼마 전 또 116으로 업데이트가 되면서.. 2023. 8. 18. css 선택자 부모 선택할 때 :has a:has(b) b 태그를 가지고 있는 a 부모:has(자식) -로 시작하는 ^= tr[id^=oList] 2023. 8. 16. 셀레니움 selectbox 제어 drop_page = Select(self.driver.find_element(By.ID, 'ddlCount')) drop_page.select_by_value('100') 이렇게 하면 셀렉트박스 선택 됨! 2023. 8. 16. xls 파일 읽기 import pandas as pd # Replace 'your_file.xls' with the actual file name file_path = 'your_file.xls' # Read the Excel file into a DataFrame df = pd.read_excel(file_path) # Print the DataFrame to see the data print(df) 2023. 8. 16. 이전 1 2 3 4 5 6 7 ··· 15 다음