有时,当导航到网址时,我收到错误:
无法显示页面
我曾尝试使用//CSS:
#container{
background-color : #defffc;
width : 100%;
height : 100%;
position : relative;
}
#clouds{
position : absolute;
width : 300px;
height : 200px;
opacity : 0.3;
}
//Body:
<p><button type = "button" onclick = "animateCloud()">Move Cloud</button></p>
<div id = "container">
<div id = "cloudy">
<img src ="cloudy.png" id = "clouds"></img>
</div>
</div>
//Script:
<script>
function animateCloud(){
var pos = 0;
var cloudElement = document.getElementById("clouds");
var id = setInterval(motion, 5);
function motion(){
if(pos==1000){
//clearInterval(id);
id = setInterval(remotion, 5, pos);
}
else{
pos++;
cloudElement.style.left = pos + 'px';
cloudElement.style.right = pos + 'px';
}
}
function remotion(){
alert(pos);
if(pos==0){
id = setInterval(motion, 5, pos);
}
else{
pos--;
cloudElement.style.right = pos + 'px';
cloudElement.style.left = pos + 'px';
}
}
}
</script>
但没有任何反应。
我也尝试过使用以下内容:
_driver.Navigate().Refresh
页面仍然是
无法显示页面
直到达到超时配置。
此外,我认为即使我成功刷新页面,我也必须做其他事情才能使元素再次活跃(可点击,可见等等)?