我正在使用Linux Mint 17和python 2.7以及selenium。 当我尝试硒webdriver其工作正常 但是python没有检测到expected_conditions
//I have the following code to begin with
@RequestMapping("/unsubscribewebhook")
public ZapJasonMessage unsubscribeWebHook(
@RequestParam("key") String key,
@RequestParam ("data[merges][FNAME]") String firstName
) {
}
解决此问题的任何解决方案?
答案 0 :(得分:1)
我假设您要导入Selenium的预期条件
from selenium import webdriver
from selenium.webdriver.support import expected_conditions as EC