Keep in mind this in within a loop.
How can I remove everything from "?" and so on?
So that "something_else_1" gets deleted
Url_before = "https:www.something.com?something_else_1"
Url_wanted = "https:www.something.com?"
In practice it looks kinda like this:
find_href = driver.find_elements(By.CSS_SELECTOR, 'img.MosaicAsset-module__thumb___yvFP5')
with open("URLS/text_urls.txt", "a+") as textFile:
for my_href in find_href:
textFile.write(str(my_href.get_attribute("src"))+"#do_something_to_remove_part_after_?_in_find_href"+"\n")