Skip to content
Advertisement

How to display something else when XPath hasn’t been found and overwriting previous Label

I am trying to create this app so that it finds the streamers views, if it doesn’t find the XPATH I want it to output “Streamer is offline” but it just outputs “Streamer is offline” even for online streamers. Also, when typing a new streamer the label does not overwrite, rather creates a new line.

JavaScript

Advertisement

Answer

In tkinter we use config() to edit properties of created widgets. Here I create the label outside the functions, then I edit it inside the functions only, so over-writing is avoided.

JavaScript

A better way to avoid concatenation is to use f strings:

JavaScript

and so on for other text too.

Plus it is also recommended to pass in the master for each widgets so as to avoid confusion when working with multiple windows and so on:

JavaScript

However you have asked more than one question here, I have answered the tkinter part. For the selenium part, you might want to ask a new question – one topic per question is the way to go.

Advertisement