我想在浏览器选项卡中打开扩展作为普通的html页面,以便可以使用Selenium WebDriver将其自动化。在firefox中,可以使用类似-的链接来完成此操作moz-extension://f1b30486-cd88-4319-bbb5-d5e387103414/popup.html
。
但是问题在于,我无法在Firefox中找到一种方法来定位所有扩展名的ID **。上面安装的id是在安装扩展程序并
moz-extension://f1b30486-cd88-4319-bbb5-d5e387103414/congratulations.html
加载带有url的页面(如欢迎页面)时获得的。
Firefox中是否有任何方法可以获取附加ID或获取所有扩展名的上述网址。
browser firefox firefox-addon firefox-addon-sdk firefox-addon-webextensions
我知道如何从我的文件夹中调用不同的表。这是通过完成的function : %let x1 = libname.foldername
。我的问题是如何使用简单的宏在1000个表上执行此操作
SAS
%Let Table1=project.table_201710;
%Let Table2=project.table_201711;
%Let Table3=project.table_201712;
%Let Table4=project.table_201801;
%Let Table5=project.table_201802;
%Let Table6=project.table_201803;
%Let Table7=project.table_201804;
%Let Table8=project.table_201805;
%Let Table9=project.table_201806;
%Let Table10=project.table_201807;
%Let Table11=project.table_201808;
%Let Table12=project.table_201809;
%Macro ConcatTable;
Data project.TABLE_FINALE;
Set
%Do i=1 %To 12;
&&Table&i.
%End;
;
Run;
%Mend ConcatTable;
%ConcatTable
Run Code Online (Sandbox Code Playgroud)