skip to Main Content

Javascript – Unable to click on date range text box using python and selenium, calendar is Daterangepicker

<div class="category well clearfix well-1"> <div class="row"> <div role="tabpanel" class="col-md-8 form-group" id="tooltip-hide"> <div class="input-group"> <span class="input-group-addon"> <label style="margin:0px;padding:0px;">Dates</label> </span> <input required="" type="text" name="report_range" id="repDateRange" placeholder="Select date range" class="form-control input-sm required" value="" readonly="" style="cursor:text; background:#fff;"> </div> <div id="dateRangeError"></div> </div> <input type="hidden"…

VIEW QUESTION

Redis – How to clear task resources and zombie processes

I am building celery + django + selenium application. I am running selenium-based browsers in separate processes with help celery. Versions: celery==5.2.6 redis==3.4.1 selenium-wire==5.1.0 Django==4.0.4 djangorestframework==3.13.1 I found out that after several hours application generates thousands of zombie processes. Also…

VIEW QUESTION

Ubuntu – Seleniumbase not logging

I am trying to capture responses using Selenium and undetected, this is working normally using those two: import undetected_chromedriver as uc capabilities = DesiredCapabilities.CHROME capabilities["goog:loggingPrefs"] = {"performance": "ALL"} driver = uc.Chrome(headless=False, desired_capabilities=capabilities) driver.get(url) time.sleep(5) logs_raw = driver.get_log("performance") This is working…

VIEW QUESTION

Unable to get the value of an element in HTML in Python and Selenium

I'm trying to get DE(GERMANY) and IN(INDIA) printed in to a list using class="lnsTableCell lnsTableCell--left" from the html below so that I can create a CSV later. <div role="gridcell" tabindex="0" data-test-subj="dataGridRowCell" class="euiDataGridRowCell euiDataGridRowCell--stripe euiDataGridRowCell--firstColumn" style="position: absolute; left: 0px; top: 73px;…

VIEW QUESTION
Back To Top
Search