如何按下页面上的按钮并在加载新页面后执行警报('hello')

时间:2018-10-04 15:00:17

标签: javascript google-chrome-extension

如何创建一个扩展,该扩展将按下“创建新项目”按钮,并在加载页面后执行警报(“我们到这里”); 谁知道?

这是页面https://github.com/ 有一个按钮“开始一个项目”

我可以按它,但是不能发出alert()

这是代码

jQuery(document).ready(function($) {
  alert('hello');
  var button = $(".btn.shelf-cta.ml-3");
  setTimeout(function(){
    console.log('here we are');
    alert('hello world');
  },3000);
  console.log('button.html() = ', button.html());
  // button.click();
  button.get(0).click();
  console.log('here we goa1');
});

0 个答案:

没有答案