如何python在屏幕上全局性的显示一句话

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何python在屏幕上全局性的显示一句话相关的知识,希望对你有一定的参考价值。

两条语句不就成了。 一条print打印到屏幕 再一条标准输出到文件
两条语句不就成了。 一条print打印到屏幕 再一条标准输出到文件
参考技术A print("这是要显示的 那句话")

如何使用 selenium java/python 确定元素是不是在特定时间显示在屏幕上?

【中文标题】如何使用 selenium java/python 确定元素是不是在特定时间显示在屏幕上?【英文标题】:How to determine if an element is displayed on screen for specific time using selenium java/python?如何使用 selenium java/python 确定元素是否在特定时间显示在屏幕上? 【发布时间】:2022-01-10 23:01:26 【问题描述】:

有一个网页元素(成功或失败消息)仅在屏幕上显示 3 秒。如何使用 selenium java 或 python 确保元素在屏幕上显示 3 秒?

【问题讨论】:

【参考方案1】:

您可以将java.time.LocalDateTimejava.time.temporal.ChronoUnitorg.openqa.selenium.support.ui.ExpectedConditions 结合使用。

在此示例中,测量按钮未启用的时间:

package selenium;

import java.time.LocalDateTime;
import java.time.temporal.ChronoUnit;
import java.util.concurrent.TimeUnit;

import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.chrome.ChromeDriver;
import org.openqa.selenium.chrome.ChromeOptions;
import org.openqa.selenium.support.ui.ExpectedConditions;
import org.openqa.selenium.support.ui.WebDriverWait;

public class DeviTimeTest 

    public static String userDir = System.getProperty("user.dir");
    public static String chromedriverPath = userDir + "\\resources\\chromedriver.exe";  
    public static WebDriver driver;
    
    public static void main(String[] args) 
        WebDriver driver = startChromeDriver();
        driver.get("https://demoqa.com/dynamic-properties");
        LocalDateTime start = LocalDateTime.now();
        WebElement button = driver.findElement(By.id("enableAfter"));
        new WebDriverWait(driver, 10).until(ExpectedConditions.elementToBeClickable(button));
        LocalDateTime finish = LocalDateTime.now();
        System.out.println("Button was disabled for " + ChronoUnit.MILLIS.between(start, finish) + " ms.");
        driver.quit();
    

    public static WebDriver startChromeDriver() 
        System.setProperty("webdriver.chrome.driver", chromedriverPath);
        ChromeOptions options = new ChromeOptions();
        options.addArguments("--ignore-certificate-errors");
        options.addArguments("--start-maximized");
        options.addArguments("--disable-notifications");
        driver = new ChromeDriver(options);
        driver.manage().timeouts().implicitlyWait(10, TimeUnit.SECONDS);
        return driver;
    

输出:

Starting ChromeDriver 96.0.4664.45 (76e4c1bb2ab4671b8beba3444e61c0f17584b2fc-refs/branch-heads/4664@#947) on port 47769
Only local connections are allowed.
Please see https://chromedriver.chromium.org/security-considerations for suggestions on keeping ChromeDriver safe.
ChromeDriver was started successfully.
Pro 06, 2021 8:00:55 DOP. org.openqa.selenium.remote.ProtocolHandshake createSession
INFO: Detected dialect: W3C
Button was disabled for 4404 ms.

【讨论】:

以上是关于如何python在屏幕上全局性的显示一句话的主要内容,如果未能解决你的问题,请参考以下文章

Android 显示原理简介

python编码

百万年薪python之路 -- 闭包

Python制作一个小学生加法准确率计算系统。

炸裂!上手三天,就在开发板上播放BadApple, 还是Python香

python中各模块变量共享的问题。