This question already has answers here:
How do I concatenate a string with a variable?
                                
                                    (5个答案)
                                
                        
                                5个月前关闭。
            
                    
作为nightwatchjs测试脚本的一部分,我有以下代码

var dealerName = sellerWebsiteAddressQueryPage.Website.filter(val => typeof val === 'string')


我想做的就是将此作为断言的一部分,如下

.assert.elementPresent('li.contact-seller__action a[href*="dealerName"]');


但是我似乎找不到在此断言中包含变量DealerName的正确方法。

任何帮助将不胜感激。

最佳答案

尝试

.assert.elementPresent(`li.contact-seller__action a[href*="${dealerName}"]`);

09-11 05:42