Selenium + Python - inspect image via execute_script
P粉899950720
P粉899950720 2024-04-03 09:32:15
0
1
482

I need to verify that an image is displayed on the page using selenium in python. For example, let's examine the logo in the upper left corner of the https://openweathermap.org/ page. I use execute_script and my code is:

def test_image(driver):
    driver.get('https://openweathermap.org/')
    time.sleep(10)
    image = driver.find_element(By.CSS_SELECTOR, "#first-level-nav > li.logo > a > img")
    print(image)
    print(driver.execute_script("return (typeof arguments[0].naturalWidth!=\"undefined\");", image))
    print(driver.execute_script("return (typeof arguments[0].naturalWidth>0);", image))
    print(driver.execute_script("return (arguments[0].naturalWidth);", image))

I got this result:

True
False
431

Why typeof argument[0].naturalWidth>0 is False, while arguments[0].naturalWidth is 431? And the image renders correctly on the page.

Update: The correct code is:

print(driver.execute_script("return (arguments[0].naturalWidth>0);", image))

P粉899950720
P粉899950720

reply all(1)
P粉765570115

The

typeof operator takes precedence over >.

typeof 431     === "number"
"number"   > 0 === false
typeof 431 > 0 === false
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template