为什么这个Javascript代码不起作用

为什么这个Javascript代码不起作用

本文介绍了为什么这个Javascript代码不起作用?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我对编码很新,对我的代码进行简单的修正将非常感激。为什么这不起作用?



I'm very new to coding, a simple correction to my code would be greatly appreciated. Why is this not working?

driver.isElementPresent(By.id('select_level_8647'))

	if (id = 'select_level_8647') {
		console.log('Present')
	}
	else {
		console.log('Not Present')
	}

推荐答案

if (driver.isElementPresent(By.id('select_level_8647'))) {
        console.log('Present')
    }
    else {
        console.log('Not Present')
    }




这篇关于为什么这个Javascript代码不起作用?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-29 17:33