为了账号安全,请及时绑定邮箱和手机立即绑定

如何刷新页面直到正确加载

如何刷新页面直到正确加载

炎炎设计 2021-12-21 10:49:55
我正在尝试在 python 中使用 selenium web 驱动程序自动化一个网站。由于页面未正确加载的服务器错误而无法获取可点击元素时,它会卡住。我想创建一个函数,如果它没有正确加载(更具体地说,如果它没有获得可点击的元素),它将在 15 秒后自动刷新页面。from selenium import webdriverfrom selenium.webdriver.common.by import Byfrom selenium.webdriver.support import expected_conditions as ECdriver=webdriver.Chrome(r"C:\Users\Hp\Downloads\chromedriver")driver.get("https://addguru.in/user/index.php")driver.maximize_window()driver.implicitly_wait(15)username=driver.find_element_by_name("username").send_keys("-------")password=driver.find_element_by_name("password").send_keys("-------")driver.implicitly_wait(40)driver.find_element_by_class_name("submit_btn").click()""" I want a function here which automatically refresh the page after each 15 sec if  the submit-btn is not clickable (due to propely loading problem) """browser.find_element_by_id("checkCbtaskdiv").click()driver.implicitly_wait(10)
查看完整描述

3 回答

?
温温酱

TA贡献1752条经验 获得超4个赞

当这种情况发生时,您至少应该在断言中发布警告。这样你就知道发生了什么错误。如果你这样做了,以下内容会对你有所帮助......


在页面初始化时或在它开始加载相关页面时添加它。你也可以在任何页面上这样做,真的。


driver.execute_script('''


    window.errorCount = 0;

    window.onerror = function (error, url, line, column, errorMessage) {


        errorCount ++;

        //** Add whatever you like from the error information to this json string.

        errorJson = '{"code":"' + error.Status + '", "error":"' + error.Status + '", "details":"' + errorMessage + '"}';

        //Appending hidden input with details to document. All console errors can be scraped this way, or just ones that stop page load if you like.

        $("body").append("<input type='hidden' class='console-error-saved' id='" + errorCount 

     + '"' value='" + errorJson + "'");


    }

''')

然后,在您的 Selenium 脚本中,在等待预期元素出现的同时,如果等待超时并且仍然找不到该元素,请运行以下命令:


pageErrors = driver.execute_script('''

    var json = ""; 

    var errors = $('.console-error-saved'); 

    for(var x=0; x < errors.length; x++) { 


        json += $(errors[x]).text(); 

        if(x < errors.length - 1) { 

            json += ","; 

        } 


    } 

    return "[" + json + "]";

''')

现在从 Python 解析 json 以从字符串中获取一个对象。查找502、503等特定错误并报告,然后调用刷新命令


import json

errors = json.loads(pageErrors)

#... look at the errors and handle them as needed.

# If qualifying error occurred, refresh the page and do your checks again.

driver.refresh()


查看完整回答
反对 回复 2021-12-21
?
holdtom

TA贡献1805条经验 获得超10个赞

欢迎来到索。这是方法。


# interval - refresh time

# maxTime - maximum time to wait (rather going into infinite loop)

def refresh_browser_until_element_present(locator_type, locator, interval, maxTime):

    startTime = datetime.now()

    elements = []

    while ((datetime.now() - startTime).seconds<maxTime and len(elements) ==0):

        time.sleep(interval)

        driver.refresh()

        if locator_type == 'xpath':

            elements = driver.find_elements_by_xpath(locator)

        elif locator_type == 'css':

            elements = driver.find_elements_by_css_selector(locator)

使用方法:


refresh_browser_until_element_present('css','#checkCbtaskdiv',15,120)


查看完整回答
反对 回复 2021-12-21
?
ibeautiful

TA贡献1993条经验 获得超5个赞

快速查看,根据此答案,您可以设置driver.find_element_by_class_name("submit_btn")不.click()带变量的响应,然后检查该变量是否不是None


while elements is None:

    elements = driver.find_element_by_class_name("submit_btn")


for e in elements:

    e.click()


查看完整回答
反对 回复 2021-12-21
  • 3 回答
  • 0 关注
  • 174 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信