在下面的代码中,am有一个问题,需要对一个特定元素的屏幕截图进行截图,名为“文章”。页面加载,导航到第一篇文章,并截图。截图正在拍摄,但并不是我指定的元素“文章”的具体内容。我提供了一些可测试的代码如下。
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.common.by import By
from selenium.webdriver.support import expected_conditions as EC
from selenium import webdrive
我试图写一个简单的脚本,遵循下面的逻辑,但我有困难。
If "Name" field = blank
Then Hide "Comment" field
Else Show "Comment" field
$(document).ready(function() {
if ($('#ContactForm-name').value() == "") {
$('#ContactForm-body').hide();
} else {
$('#ContactFo